From 7e33642c3bd7f81baa88b57cda5631b09aa87370 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A9dic=20Guibert?= Date: Tue, 14 Mar 2023 09:47:01 +0100 Subject: [PATCH] Improve the english in invoke.py comments --- invoke.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/invoke.py b/invoke.py index a0652a6..b29dee4 100644 --- a/invoke.py +++ b/invoke.py @@ -9,7 +9,7 @@ # This is the host directory containing your PHP application project_directory = 'application' -# Usually, you should not edit the file above this point +# Usually, you should not edit the file below this point php_version = '8.1' docker_compose_files = [ 'docker-compose.yml', @@ -61,7 +61,7 @@ def __extract_runtime_configuration(config): elif platform in ["win32", "win64"]: config['docker_compose_files'] += ['docker-compose.docker-for-x.yml'] config['power_shell'] = True - # # Python can't set the vars correctly on PowerShell and local() always calls cmd.exe + # Python can't set the vars correctly on PowerShell and local() always calls cmd.exe shellProjectName = run('echo %PROJECT_NAME%', hide=True).stdout if (shellProjectName.rstrip() != config['project_name']):