diff options
author | lioux <lioux@FreeBSD.org> | 2002-08-16 10:18:14 +0800 |
---|---|---|
committer | lioux <lioux@FreeBSD.org> | 2002-08-16 10:18:14 +0800 |
commit | ebedf264755ce48d2593cff24a790c5c99217c9a (patch) | |
tree | 6c4b59333e54781a9bbbf49a2f1f06d23d63f3d0 /audio/agsatellite | |
parent | 2ac0f23ba71ff5be7bc91ad91ec26538c24fce75 (diff) | |
download | freebsd-ports-gnome-ebedf264755ce48d2593cff24a790c5c99217c9a.tar.gz freebsd-ports-gnome-ebedf264755ce48d2593cff24a790c5c99217c9a.tar.zst freebsd-ports-gnome-ebedf264755ce48d2593cff24a790c5c99217c9a.zip |
Replace sh shell parameter $* with safer "${@}"
Diffstat (limited to 'audio/agsatellite')
-rw-r--r-- | audio/agsatellite/files/wrapper.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/audio/agsatellite/files/wrapper.sh b/audio/agsatellite/files/wrapper.sh index e53603d86a76..ce5b7d7ae0ba 100644 --- a/audio/agsatellite/files/wrapper.sh +++ b/audio/agsatellite/files/wrapper.sh @@ -18,6 +18,6 @@ echo " ${*} " | grep " \-createdironly " || cd ${HOME}/.agsatellite && echo Running Audio Galaxy Satellite under ${HOME}/.agsatellite && echo Create both account.txt and shares.txt files under ${HOME}/.agsatellite && - exec ./${PROGRAM##*/} ${*} || + exec ./${PROGRAM##*/} "${@}" || echo PROBLEM. Cannot create directory ${HOME}/.agsatellite, make sure you have the proper permissions to create itnd try again } |