summaryrefslogtreecommitdiff
path: root/indra/viewer_components/updater/scripts/darwin/update_install
diff options
context:
space:
mode:
authorJJ Linden <jj@lindenlab.com>2013-05-15 14:57:56 -0700
committerJJ Linden <jj@lindenlab.com>2013-05-15 14:57:56 -0700
commita606a1cd68bd858c711856702185ae11194c6311 (patch)
tree2c060215b7ddc02492d715cae6b48d5f3c26f335 /indra/viewer_components/updater/scripts/darwin/update_install
parent435bda9df464ef7faaf8329ffa094dca9e82a6a4 (diff)
parent50e3b7da42ddbae409f0a2bdbc322da96941fa07 (diff)
merged in branch for changing BuildParams
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