diff options
author | 2016-07-29 12:53:16 -0400 | |
---|---|---|
committer | 2016-07-29 12:53:16 -0400 | |
commit | 6bc8c3ae2d87758d4777fa170027dbe8cfa14d86 (patch) | |
tree | 04b9e462977f540953b83d7a7644e8f4441b4f47 /scripts/osx/ta | |
parent | e9474c8c82745d82ffb39ff1618a96b10f724077 (diff) | |
download | textadept-6bc8c3ae2d87758d4777fa170027dbe8cfa14d86.tar.gz textadept-6bc8c3ae2d87758d4777fa170027dbe8cfa14d86.zip |
Fixed passing of quoted arguments to OSX `ta` script; scripts/osx/ta
Diffstat (limited to 'scripts/osx/ta')
-rwxr-xr-x | scripts/osx/ta | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/osx/ta b/scripts/osx/ta index d864b619..0a1b9521 100755 --- a/scripts/osx/ta +++ b/scripts/osx/ta @@ -8,7 +8,7 @@ if [[ "$1" == "-h" || "$1" == "--help" ]]; then echo "ta [args] [filenames] open the given filenames in a new instance of" echo " Textadept with the given arguments" elif [ "${1:0:1}" == "-" ]; then - open -n -a Textadept.app --args $@ + open -n -a Textadept.app --args "$@" else - open -a Textadept.app $@ + open -a Textadept.app "$@" fi |