]> henry.ined.fr Git - .git/commitdiff
Summary: Borrowed from gnuplot
authorN. Brouard <brouard@ined.fr>
Sat, 21 Apr 2018 21:13:27 +0000 (21:13 +0000)
committerN. Brouard <brouard@ined.fr>
Sat, 21 Apr 2018 21:13:27 +0000 (21:13 +0000)
distributions/osx/imach

index b3c31a74675746c209cb2e0eec6fe92944697f96..9a0ea222830eb351f64b324a3492e75a49f4b532 100755 (executable)
@@ -1,8 +1,19 @@
 #!/bin/bash
+# Borrowed to gnuplot
+# record prior dir
+STARTDIR=`pwd`
 
-read -d '' EXECUTE <<DACODE
-cd $(dirname "$0")/../Resources/bin
-pwd
-./imach
-DACODE
-osascript -e "tell application \"Terminal\" to do script \"$EXECUTE\""
+# get the full path to the bundle's MacOS directory
+# and define BINDIR
+CWD=$(cd "$(dirname "$0")"; pwd)
+TOP="`dirname \"$CWD\"`/Resources"
+BINDIR="${TOP}/bin"
+
+# Strip out the argument added by the OS, if any
+if /bin/expr "x$1" : '^x-psn_' > /dev/null; then
+    shift 1
+fi
+
+cd "$STARTDIR"
+
+open -a Terminal "$BINDIR"/imach "$@"