1
0
Fork 0
mirror of https://github.com/engineer-man/piston.git synced 2025-10-08 03:30:03 +02:00

Fix package init script to use "$@" in run file instead of "$*"

This commit is contained in:
Victor Frazao 2021-03-15 13:51:38 -04:00
parent 39adb13ba1
commit 3fb287f51e

View file

@ -54,7 +54,7 @@ echo "# Put 'export' statements here for environment variables" >> environment
echo "export PATH=\$PWD/bin:\$PATH" >> environment echo "export PATH=\$PWD/bin:\$PATH" >> environment
echo "# Put instructions to run the runtime" >> run echo "# Put instructions to run the runtime" >> run
echo "$NAME-$VERSION \$*" >> run echo "$NAME-$VERSION \"\$@\"" >> run
echo "# Put instructions to compile source code, remove this file if the language does not require this stage" >> compile echo "# Put instructions to compile source code, remove this file if the language does not require this stage" >> compile