diff options
author | Russ Cox <rsc@swtch.com> | 2012-10-20 13:28:46 -0400 |
---|---|---|
committer | Russ Cox <rsc@swtch.com> | 2012-10-20 13:28:46 -0400 |
commit | 53527a6e7864f5d681d7140f1403d4d8d42311d5 (patch) | |
tree | ac057009d2e790f378746328155c7a3c1106513b | |
parent | 83d065a6b30f0e89af3d04e26568fc93b98e6604 (diff) | |
download | plan9port-53527a6e7864f5d681d7140f1403d4d8d42311d5.tar.gz plan9port-53527a6e7864f5d681d7140f1403d4d8d42311d5.tar.bz2 plan9port-53527a6e7864f5d681d7140f1403d4d8d42311d5.zip |
web: fix BROWSER=google-chrome on Mac
R=rsc
http://codereview.appspot.com/6750046
-rwxr-xr-x | bin/web | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -6,6 +6,9 @@ plumbapple() none) open "$@" ;; + *google-chrome*) + open -a "Google Chrome" "$@" + ;; *) open -a "$BROWSER" "$@" ;; |