summaryrefslogtreecommitdiff
path: root/indra/viewer_components/updater/scripts/darwin/update_install
diff options
context:
space:
mode:
authorMerov Linden <merov@lindenlab.com>2013-05-22 11:23:51 -0700
committerMerov Linden <merov@lindenlab.com>2013-05-22 11:23:51 -0700
commit2113bb8159cda689e8a6001d2d1548cb2c6ab50f (patch)
treee004263a4b646ff0c1f6f0d5319977c9bff807c4 /indra/viewer_components/updater/scripts/darwin/update_install
parent34142d3f44d8f2a6fa5fb1ccf03f1ade1730c881 (diff)
parent0ebcb7e3fd1452d42b5ca48139f99a4fd632d235 (diff)
Pull merge from viewer-release
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