From 6bc8c3ae2d87758d4777fa170027dbe8cfa14d86 Mon Sep 17 00:00:00 2001 From: mitchell <70453897+667e-11@users.noreply.github.com> Date: Fri, 29 Jul 2016 12:53:16 -0400 Subject: Fixed passing of quoted arguments to OSX `ta` script; scripts/osx/ta --- scripts/osx/ta | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'scripts') 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 -- cgit v1.2.3