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