Kaydet (Commit) d6a3f930 authored tarafından Jack Jansen's avatar Jack Jansen

Use "$@" to pass arguments to Python in stead of "${1}". This passes all

arguments, and also does the right thing for the no argument case.
üst 0feb8c34
......@@ -263,7 +263,7 @@ resdir=$(dirname "${execdir}")/Resources
main="${resdir}/%(mainprogram)s"
PYTHONPATH="$resdir"
export PYTHONPATH
exec "${executable}" "${main}" "${1}"
exec "${executable}" "${main}" "$@"
"""
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment