Fix bug in "msspec -p" command.
epsi-builds/msspec_python3/pipeline/head There was a failure building this commit
Details
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:
parent
230340b1fd
commit
a57b8d138b
|
@ -12,7 +12,7 @@ if ! [ -d "$VENV_PATH" ]; then
|
|||
fi
|
||||
|
||||
launch_script() {
|
||||
. "$VENV_PATH/bin/activate" && python $@
|
||||
. "$VENV_PATH/bin/activate" && python "$@"
|
||||
}
|
||||
|
||||
show_help () {
|
||||
|
|
Loading…
Reference in New Issue