aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts
diff options
context:
space:
mode:
authorGravatar mitchell <70453897+667e-11@users.noreply.github.com>2016-07-29 12:53:16 -0400
committerGravatar mitchell <70453897+667e-11@users.noreply.github.com>2016-07-29 12:53:16 -0400
commit6bc8c3ae2d87758d4777fa170027dbe8cfa14d86 (patch)
tree04b9e462977f540953b83d7a7644e8f4441b4f47 /scripts
parente9474c8c82745d82ffb39ff1618a96b10f724077 (diff)
Fixed passing of quoted arguments to OSX `ta` script; scripts/osx/ta
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/osx/ta4
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