1
0
mirror of https://github.com/robbyrussell/oh-my-zsh.git synced 2026-04-22 14:23:32 +02:00

Use standard open command in fasd and lighthouse plugins

This commit is contained in:
Marc Cornellà
2015-08-05 01:02:17 +02:00
parent d1d06b5675
commit b760a10cb2
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -9,7 +9,7 @@ open_lighthouse_ticket () {
else
lighthouse_url=$(cat .lighthouse-url);
echo "Opening ticket #$1";
`open $lighthouse_url/tickets/$1`;
open_command "$lighthouse_url/tickets/$1";
fi
}