Browse Source

change $* to ${1+"$"}

Dave Schuyler 25 years ago
parent
commit
6d8770d60c
1 changed files with 2 additions and 2 deletions
  1. 2 2
      direct/src/showbase/ppython

+ 2 - 2
direct/src/showbase/ppython

@@ -54,8 +54,8 @@ export HOME
 
 if [ x"$1" = x"-d" ]; then
   shift 1
-  exec python_d $*
+  exec python_d ${1+"$@"}
 else
-  exec python $*
+  exec python ${1+"$@"}
 fi