summaryrefslogtreecommitdiff
path: root/indra/viewer_components/updater/scripts/darwin/update_install
diff options
context:
space:
mode:
authorOz Linden <oz@lindenlab.com>2013-03-06 16:39:48 -0500
committerOz Linden <oz@lindenlab.com>2013-03-06 16:39:48 -0500
commitc70b0a9de66e6b8d93f1027932ba7e801de3473b (patch)
treed1157e2897ac8bf1e79ce6f55200406d1bb7fca2 /indra/viewer_components/updater/scripts/darwin/update_install
parentce73cc392c3f6e2a80c03e30a7dd975408e69f1c (diff)
parent1eabdf70fc61f7f1cff5fe2522e3e769d0e35db5 (diff)
merge changes for DRTVWR-278
Diffstat (limited to 'indra/viewer_components/updater/scripts/darwin/update_install')
-rw-r--r--indra/viewer_components/updater/scripts/darwin/update_install10
1 files changed, 0 insertions, 10 deletions
diff --git a/indra/viewer_components/updater/scripts/darwin/update_install b/indra/viewer_components/updater/scripts/darwin/update_install
deleted file mode 100644
index e7f36dc5a3..0000000000
--- a/indra/viewer_components/updater/scripts/darwin/update_install
+++ /dev/null
@@ -1,10 +0,0 @@
-#! /bin/bash
-
-#
-# The first argument contains the path to the installer app. The second a path
-# to a marker file which should be created if the installer fails.q
-#
-
-cd "$(dirname "$0")"
-(../Resources/mac-updater.app/Contents/MacOS/mac-updater -dmg "$1" -name "Second Life Viewer"; if [ $? -ne 0 ]; then echo $3 >> "$2"; fi;) &
-exit 0