From 479c70d0aa9fce67952906bdbd6c180b42e99ce2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matej=20Ba=C4=8Do?= Date: Thu, 11 Jan 2024 08:25:55 +0000 Subject: [PATCH] Fix after revert --- src/Appwrite/Platform/Tasks/DevGenerateTranslations.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Appwrite/Platform/Tasks/DevGenerateTranslations.php b/src/Appwrite/Platform/Tasks/DevGenerateTranslations.php index 336a378c70..2074cae50a 100644 --- a/src/Appwrite/Platform/Tasks/DevGenerateTranslations.php +++ b/src/Appwrite/Platform/Tasks/DevGenerateTranslations.php @@ -22,7 +22,7 @@ class DevGenerateTranslations extends Action { $this ->desc('Generate translations in all languages') - ->param('dry-run', true, new Boolean(true), 'If action should do a dry run. Dry run does not write into files', true) + ->param('dry-run', 'true', new Boolean(true), 'If action should do a dry run. Dry run does not write into files', true) ->param('api-key', '', new Text(256), 'Open AI API key. Only used during non-dry runs to generate translations.', true) ->callback(fn ($dryRun, $apiKey) => $this->action($dryRun, $apiKey)); }