aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-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