Skip to content

Commit ccc4743

Browse files
committed
Fix flr = fetch latest runtimes
1 parent 2759c4e commit ccc4743

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/Commands/InitStack.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class InitStack extends Base
1414

1515
protected $signature = 'init
1616
{runtime? : The runtime to load}
17-
{--ftr : Whether to get the latest runtimes from the runtimes repository}
17+
{--flr : Whether to fetch the latest runtimes from the runtimes repository}
1818
{--dest= : The path where to save the runtimes, defaults to the current working directory.}';
1919
protected $description = 'Initialize devstack runtime to the current project';
2020

@@ -72,7 +72,7 @@ public function handle(): int
7272
private function resolveRuntimes()
7373
{
7474
$runtimesDoesntExistsYet = $this->devstackStorage()->doesntExists('runtimes');
75-
$shouldGetTheLatestRuntimes = $this->option('ftr', false);
75+
$shouldGetTheLatestRuntimes = $this->option('flr', false);
7676

7777
if ($shouldGetTheLatestRuntimes || $runtimesDoesntExistsYet) {
7878
if ($runtimesDoesntExistsYet) {

0 commit comments

Comments
 (0)