Closed Montspy closed 2 years ago
A quick google search points toward changing $@
to "$@"
in docker.sh
and all shell scripts in dockerfiles/scripts
Example:
#!/bin/sh
cd /var/www/html
python3 generator/transfer.py $@
to
#!/bin/sh
cd /var/www/html
python3 generator/transfer.py "$@"
Implemented, will close when it reaches main branch.
It looks like somewhere along the chain
shell -> docker.sh -> transfer bash script -> python transfer.py
, quoted strings lose their quotes.I am trying to add a
--memo
argument to thetransfer.py
script.