diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-05-08 14:34:13 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-05-08 14:34:13 +0000 |
commit | a41575532a9b9cfacb623b5fe8751098a8950f80 (patch) | |
tree | cf5356dc471db97b01896932d7095ad87eb15859 /setup_native/scripts/downloadscript.sh | |
parent | 40d82682741953002511c9c123a940720c7a2409 (diff) |
INTEGRATION: CWS soc (1.5.110); FILE MERGED
2006/03/16 12:17:14 is 1.5.110.1: #133458# extract only parameter for download scripts
Diffstat (limited to 'setup_native/scripts/downloadscript.sh')
-rw-r--r-- | setup_native/scripts/downloadscript.sh | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/setup_native/scripts/downloadscript.sh b/setup_native/scripts/downloadscript.sh index 14e56adf8124..d6140569c405 100644 --- a/setup_native/scripts/downloadscript.sh +++ b/setup_native/scripts/downloadscript.sh @@ -6,6 +6,12 @@ UNPACKDIR=/var/tmp/unpack_PRODUCTNAMEPLACEHOLDER diskSpaceRequired=DISCSPACEPLACEHOLDER checksum=CHECKSUMPLACEHOLDER +EXTRACTONLY="no" +if [ "$1" = "-x" ] +then + EXTRACTONLY=yes +fi + # Determining current platform platform=`uname -s` @@ -69,10 +75,13 @@ $tail_prog +$linenum $0 | (cd $UNPACKDIR; tar xf -) echo "All files have been successfully unpacked." -if [ -f $UNPACKDIR/setup ] +if [ "$EXTRACTONLY" != "yes" ] then - chmod 775 $UNPACKDIR/setup - $UNPACKDIR/setup + if [ -f $UNPACKDIR/setup ] + then + chmod 775 $UNPACKDIR/setup + $UNPACKDIR/setup + fi fi exit 0 |