summaryrefslogtreecommitdiff
path: root/makeself.sh
diff options
context:
space:
mode:
authorStephane Peter <megastep@megastep.org>2019-09-14 20:19:37 -0700
committerStephane Peter <megastep@megastep.org>2019-09-14 20:19:37 -0700
commit5aa42061656ac6fe948eceb971273559f77c4a39 (patch)
treefffb0d8e332b6ac42620e8827828617de87856b5 /makeself.sh
parent56c742bd90ebcb22feaff4d78ae4e62e72ffc7ad (diff)
downloadmakeself-5aa42061656ac6fe948eceb971273559f77c4a39.tar.gz
Indentation fixes
Diffstat (limited to 'makeself.sh')
-rwxr-xr-xmakeself.sh26
1 files changed, 13 insertions, 13 deletions
diff --git a/makeself.sh b/makeself.sh
index d97a6a9..2f2c4c3 100755
--- a/makeself.sh
+++ b/makeself.sh
@@ -420,42 +420,42 @@ archname="$2"
if test "$QUIET" = "y" || test "$TAR_QUIETLY" = "y"; then
if test "$TAR_ARGS" = "rvf"; then
- TAR_ARGS="rf"
+ TAR_ARGS="rf"
elif test "$TAR_ARGS" = "rvhf";then
- TAR_ARGS="rhf"
+ TAR_ARGS="rhf"
fi
fi
if test "$APPEND" = y; then
if test $# -lt 2; then
- MS_Usage
+ MS_Usage
fi
# Gather the info from the original archive
OLDENV=`sh "$archname" --dumpconf`
if test $? -ne 0; then
- echo "Unable to update archive: $archname" >&2
- exit 1
+ echo "Unable to update archive: $archname" >&2
+ exit 1
else
- eval "$OLDENV"
+ eval "$OLDENV"
fi
else
if test "$KEEP" = n -a $# = 3; then
- echo "ERROR: Making a temporary archive with no embedded command does not make sense!" >&2
- echo >&2
- MS_Usage
+ echo "ERROR: Making a temporary archive with no embedded command does not make sense!" >&2
+ echo >&2
+ MS_Usage
fi
# We don't want to create an absolute directory unless a target directory is defined
if test "$CURRENT" = y; then
- archdirname="."
+ archdirname="."
elif test x"$TARGETDIR" != x; then
- archdirname="$TARGETDIR"
+ archdirname="$TARGETDIR"
else
- archdirname=`basename "$1"`
+ archdirname=`basename "$1"`
fi
if test $# -lt 3; then
- MS_Usage
+ MS_Usage
fi
LABEL="$3"