diff options
author | Marc Cornellà <marc.cornella@live.com> | 2015-08-05 01:02:17 +0200 |
---|---|---|
committer | Marc Cornellà <marc.cornella@live.com> | 2015-08-05 01:18:42 +0200 |
commit | b760a10cb27e5e17ad32e51ffac3374334fa4888 (patch) | |
tree | cd125a58eaee5ac82ea2213ac00f9c1503cfb0f4 /plugins/lighthouse | |
parent | d1d06b5675bebbe54f3d876eb993b6e89d8963c7 (diff) | |
download | zsh-b760a10cb27e5e17ad32e51ffac3374334fa4888.tar.gz zsh-b760a10cb27e5e17ad32e51ffac3374334fa4888.tar.bz2 zsh-b760a10cb27e5e17ad32e51ffac3374334fa4888.zip |
Use standard open command in fasd and lighthouse plugins
Diffstat (limited to 'plugins/lighthouse')
-rw-r--r-- | plugins/lighthouse/lighthouse.plugin.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/lighthouse/lighthouse.plugin.zsh b/plugins/lighthouse/lighthouse.plugin.zsh index 7661c6add..48cddbccc 100644 --- a/plugins/lighthouse/lighthouse.plugin.zsh +++ b/plugins/lighthouse/lighthouse.plugin.zsh @@ -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 } |