Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve the english in invoke.py comments #209

Merged
merged 1 commit into from
Mar 14, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions invoke.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down Expand Up @@ -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']):
Expand Down