aboutsummaryrefslogtreecommitdiffstats
path: root/packaging/macosx/Scripts/wireshark-preflight.sh
diff options
context:
space:
mode:
Diffstat (limited to 'packaging/macosx/Scripts/wireshark-preflight.sh')
-rwxr-xr-xpackaging/macosx/Scripts/wireshark-preflight.sh16
1 files changed, 0 insertions, 16 deletions
diff --git a/packaging/macosx/Scripts/wireshark-preflight.sh b/packaging/macosx/Scripts/wireshark-preflight.sh
deleted file mode 100755
index bee0b2e8e0..0000000000
--- a/packaging/macosx/Scripts/wireshark-preflight.sh
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/bin/sh
-
-#
-# If we're upgrading, remove the old Wireshark.app before installing
-# the new one so that we don't try to load old, incompatible libraries,
-# plugins, codes, or other code.
-#
-
-OLD_APP="$2/Wireshark.app"
-
-# This is the wrong way to go about ensuring that our installation is
-# deterministic.
-# https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=16050
-#if [ -d "$OLD_APP" ] ; then
-# rm -rf "$OLD_APP"
-#fi