From 2fd2373172a27bd79e22ac13505714467fe7e659 Mon Sep 17 00:00:00 2001 From: sebprt Date: Wed, 17 Jan 2024 10:22:17 +0100 Subject: [PATCH] Applied suggestion --- src/Cloud/Console/Command/CreateCommand.php | 2 +- src/Cloud/Console/Command/RemoveCommand.php | 4 ++-- src/Cloud/Console/Command/UpdateCommand.php | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Cloud/Console/Command/CreateCommand.php b/src/Cloud/Console/Command/CreateCommand.php index 8bef2c96..c062eb12 100644 --- a/src/Cloud/Console/Command/CreateCommand.php +++ b/src/Cloud/Console/Command/CreateCommand.php @@ -89,7 +89,7 @@ protected function execute(Console\Input\InputInterface $input, Console\Output\O } if (!\array_key_exists('version', $configuration)) { - $style->warning('The current version of your configuration does not allow you to use Cloud commands. Please update your configuration to version 0.3.'); + $style->warning('The current version of your configuration does not allow you to use Cloud commands. Please update your configuration at least to version 0.3.'); return self::INVALID; } diff --git a/src/Cloud/Console/Command/RemoveCommand.php b/src/Cloud/Console/Command/RemoveCommand.php index eca126fd..58da5a9f 100644 --- a/src/Cloud/Console/Command/RemoveCommand.php +++ b/src/Cloud/Console/Command/RemoveCommand.php @@ -22,7 +22,7 @@ protected function configure(): void $this->addOption('url', 'u', mode: Console\Input\InputArgument::OPTIONAL, description: 'Base URL of the cloud instance', default: 'https://app.gyroscops.com'); $this->addOption('beta', mode: Console\Input\InputOption::VALUE_NONE, description: 'Shortcut to set the cloud instance to https://beta.gyroscops.com'); $this->addOption('ssl', mode: Console\Input\InputOption::VALUE_NEGATABLE, description: 'Enable or disable SSL'); - $this->addOption('output', mode: Console\Input\InputOption::VALUE_OPTIONAL, description: 'Specify the path of the working directory'); + $this->addOption('output', mode: Console\Input\InputOption::VALUE_OPTIONAL, description: 'Specify the path of the resulting tarball when building for Docker'); $this->addArgument('config', mode: Console\Input\InputArgument::REQUIRED); } @@ -87,7 +87,7 @@ protected function execute(Console\Input\InputInterface $input, Console\Output\O } if (!\array_key_exists('version', $configuration)) { - $style->warning('The current version of your configuration does not allow you to use Cloud commands. Please update your configuration to version 0.3.'); + $style->warning('The current version of your configuration does not allow you to use Cloud commands. Please update your configuration at least to version 0.3.'); return self::INVALID; } diff --git a/src/Cloud/Console/Command/UpdateCommand.php b/src/Cloud/Console/Command/UpdateCommand.php index 28a0695a..e6128bb2 100644 --- a/src/Cloud/Console/Command/UpdateCommand.php +++ b/src/Cloud/Console/Command/UpdateCommand.php @@ -89,7 +89,7 @@ protected function execute(Console\Input\InputInterface $input, Console\Output\O } if (!\array_key_exists('version', $configuration)) { - $style->warning('The current version of your configuration does not allow you to use Cloud commands. Please update your configuration to version 0.3.'); + $style->warning('The current version of your configuration does not allow you to use Cloud commands. Please update your configuration at least to version 0.3.'); return self::INVALID; }