Skip to content

Commit

Permalink
fix command to open url in browser
Browse files Browse the repository at this point in the history
fixes #86
  • Loading branch information
gharlan committed May 7, 2017
1 parent 3b4bbf3 commit 721a79f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion action.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
if ('.git' == substr($query, -4)) {
$query = 'github-mac://openRepo/'.substr($query, 0, -4);
}
exec('open "'.$query.'"');
exec('open '.$query);
return;
}

Expand Down

0 comments on commit 721a79f

Please sign in to comment.