From 0c809893e12c40e6b97fa73ea40f760045bcd8cd Mon Sep 17 00:00:00 2001 From: Allan Odgaard Date: Sun, 17 Aug 2014 20:54:44 +0200 Subject: [PATCH] Use the open command instead of mate MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This way we do not rely on ‘mate’ being installed and/or findable via the PATH. --- .../TextMate2 (TTL:SPARQL).app/Contents/Resources/script | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Support/textmate-runner/runner/TextMate2 (TTL:SPARQL).app/Contents/Resources/script b/Support/textmate-runner/runner/TextMate2 (TTL:SPARQL).app/Contents/Resources/script index 6fea9d1..a0d6492 100755 --- a/Support/textmate-runner/runner/TextMate2 (TTL:SPARQL).app/Contents/Resources/script +++ b/Support/textmate-runner/runner/TextMate2 (TTL:SPARQL).app/Contents/Resources/script @@ -3,5 +3,5 @@ for file in "$@" do echo "Opening $file" - mate -a -r "$file" -done \ No newline at end of file + open -a TextMate "$file" +done