47286f3e1d
o Fix bug in wrapper script: do not incorrectly use shift from sh(1). First command line argument was being lost when there was more than 1 argument.
6 lines
84 B
Bash
6 lines
84 B
Bash
#!/bin/sh
|
|
|
|
PREFIX="%%PREFIX%%"
|
|
PROGRAM="${0}"
|
|
|
|
exec ${PREFIX}/${PROGRAM##*/} ${*} &
|