diff options
author | Francois Tigeot <ftigeot@wolfpond.org> | 2011-07-05 14:31:35 +0200 |
---|---|---|
committer | Francois Tigeot <ftigeot@wolfpond.org> | 2011-07-05 14:31:35 +0200 |
commit | 8dee23c7056750a9df2a30adefa72462e4216403 (patch) | |
tree | 0170c821f17325ae52fb7c7e8c2010e00812d38a /shell | |
parent | 3820b6b0b998e8a0a16d8390da4813614ee23538 (diff) |
Hardcode browser list: remove netscape, add chrome
Diffstat (limited to 'shell')
-rwxr-xr-x | shell/source/unix/misc/open-url.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/source/unix/misc/open-url.sh b/shell/source/unix/misc/open-url.sh index bd4c05905605..0dc22cb83196 100755 --- a/shell/source/unix/misc/open-url.sh +++ b/shell/source/unix/misc/open-url.sh @@ -80,7 +80,7 @@ else exit 0 fi # mozilla derivates may need -remote semantics - for i in firefox seamonkey netscape; do + for i in chrome seamonkey firefox; do browser=`which $i` if [ ! -z "$browser" ]; then run_mozilla "$browser" "$1" |