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 committed by Thomas
parent 2ebe1a3308
commit 7837f1c7c0
1 changed files with 2 additions and 2 deletions

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