summaryrefslogtreecommitdiff
path: root/shell/source/unix/misc/gnome-open-url.sh
diff options
context:
space:
mode:
Diffstat (limited to 'shell/source/unix/misc/gnome-open-url.sh')
-rwxr-xr-xshell/source/unix/misc/gnome-open-url.sh4
1 files changed, 0 insertions, 4 deletions
diff --git a/shell/source/unix/misc/gnome-open-url.sh b/shell/source/unix/misc/gnome-open-url.sh
deleted file mode 100755
index bffe6f27a783..000000000000
--- a/shell/source/unix/misc/gnome-open-url.sh
+++ /dev/null
@@ -1,4 +0,0 @@
-#!/bin/sh
-
-# use xdg-open or gnome-open if available, falling back to our own open-url
-xdg-open "$1" 2>/dev/null || gnome-open "$1" 2>/dev/null || `dirname "$0"`/open-url "$1" 2>/dev/null