diff options
author | Robby Russell <robby@planetargon.com> | 2015-08-12 21:14:27 -0700 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2015-08-12 21:14:27 -0700 |
commit | b8dbd9bfba261cde572a9cd196dc057719862a6d (patch) | |
tree | 34887e6b187a29887dde97f113bc0a681df17267 /plugins/lighthouse/lighthouse.plugin.zsh | |
parent | 4c1eda114d982ff5f7f7adc396f24c25d3f639d0 (diff) | |
parent | b760a10cb27e5e17ad32e51ffac3374334fa4888 (diff) | |
download | zsh-b8dbd9bfba261cde572a9cd196dc057719862a6d.tar.gz zsh-b8dbd9bfba261cde572a9cd196dc057719862a6d.tar.bz2 zsh-b8dbd9bfba261cde572a9cd196dc057719862a6d.zip |
Merge pull request #4217 from mcornella/standard-open-command
Implement and use a standard, cross-platform open command
Diffstat (limited to 'plugins/lighthouse/lighthouse.plugin.zsh')
-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 } |