From 6d8770d60c2b47ed3ad6e06707f78de2685567cc Mon Sep 17 00:00:00 2001 From: Dave Schuyler Date: Tue, 20 Feb 2001 21:38:31 +0000 Subject: [PATCH] change $* to ${1+"$"} --- direct/src/showbase/ppython | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/direct/src/showbase/ppython b/direct/src/showbase/ppython index 569f6ba9db..6fedfc630a 100755 --- a/direct/src/showbase/ppython +++ b/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