Skip to content

Commit ac9fa1c

Browse files
authored
[6.x] Allow dev stability for local starter kit installations (#14208)
1 parent 1fe1d91 commit ac9fa1c

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

src/StarterKits/Installer.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -253,6 +253,11 @@ function () {
253253
$version = '@dev';
254254
}
255255

256+
// Allow dev stability when installing from local repo
257+
if (! $version && $this->fromLocalRepo) {
258+
$version = '@dev';
259+
}
260+
256261
$package = $version
257262
? "{$this->package}:{$version}"
258263
: $this->package;

0 commit comments

Comments
 (0)