Skip to content

Commit 721a79f

Browse files
committed
fix command to open url in browser
fixes #86
1 parent 3b4bbf3 commit 721a79f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

action.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
if ('.git' == substr($query, -4)) {
1818
$query = 'github-mac://openRepo/'.substr($query, 0, -4);
1919
}
20-
exec('open "'.$query.'"');
20+
exec('open '.$query);
2121
return;
2222
}
2323

0 commit comments

Comments
 (0)