mirror of
https://github.com/microtherion/VocalEasel.git
synced 2024-12-22 03:04:00 +00:00
Deal with spaces in path names
This commit is contained in:
parent
ffc7ff5c38
commit
ea03581088
|
@ -1,3 +1,3 @@
|
|||
#!/bin/bash -l
|
||||
|
||||
exec lame $*
|
||||
exec lame "$*"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#!/bin/bash -l
|
||||
|
||||
export PATH=`dirname $1`:$PATH
|
||||
export PATH="`dirname $1`":$PATH
|
||||
exec $*
|
||||
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#!/bin/sh -l
|
||||
|
||||
cd ${0%/*/*}/share/mma
|
||||
exec ${0%/*}/mma.py $*
|
||||
cd "${0%/*/*}"/share/mma
|
||||
exec "${0%/*}"/mma.py $*
|
||||
|
|
Loading…
Reference in New Issue
Block a user