Fix bug in "msspec -p" command.
epsi-builds/msspec_python3/pipeline/head There was a failure building this commit Details

When using python options (like "-c" for example), all
arguments from the command line were not passed to the
launch_script function because of missing double quotes
around the $@ array.
This commit is contained in:
Sylvain Tricot 2021-09-20 11:17:26 +02:00
parent 230340b1fd
commit a57b8d138b
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ if ! [ -d "$VENV_PATH" ]; then
fi
launch_script() {
. "$VENV_PATH/bin/activate" && python $@
. "$VENV_PATH/bin/activate" && python "$@"
}
show_help () {