diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2002-08-07 14:05:58 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2002-08-07 14:05:58 (GMT) |
commit | b2bb87300bd5db23216d5f339e1cdb6e4c613b42 (patch) | |
tree | 4cbddaebdbdc18fa6df0404f9d3a81dfecf1356c | |
parent | f7aa164d7a84da3d2814abb8383c309603537c54 (diff) | |
download | cpython-b2bb87300bd5db23216d5f339e1cdb6e4c613b42.zip cpython-b2bb87300bd5db23216d5f339e1cdb6e4c613b42.tar.gz cpython-b2bb87300bd5db23216d5f339e1cdb6e4c613b42.tar.bz2 |
Quote the arguments, they may contain strings.
-rwxr-xr-x | Mac/OSX/pythonw.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mac/OSX/pythonw.sh b/Mac/OSX/pythonw.sh index d3ee37d..b919bb9 100755 --- a/Mac/OSX/pythonw.sh +++ b/Mac/OSX/pythonw.sh @@ -1,2 +1,2 @@ #!/bin/sh -exec /Library/Frameworks/Python.framework/Versions/Current/Resources/Python.app/Contents/MacOS/python $@ +exec /Library/Frameworks/Python.framework/Versions/Current/Resources/Python.app/Contents/MacOS/python "$@" |