summaryrefslogtreecommitdiffstats
path: root/scripts/makeself/makeself.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/makeself/makeself.sh')
-rwxr-xr-xscripts/makeself/makeself.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/makeself/makeself.sh b/scripts/makeself/makeself.sh
index 0859fd0..0428fa4 100755
--- a/scripts/makeself/makeself.sh
+++ b/scripts/makeself/makeself.sh
@@ -292,7 +292,8 @@ DATE=`LC_ALL=C date`
echo About to compress $USIZE KB of data...
echo Adding files to archive named \"$archname\"...
(cd "$archdir"; tar $TAR_ARGS - * | eval "$GZIP_CMD" ) >> "$tmpfile" || { echo Aborting; rm -f "$tmpfile"; exit 1; }
-echo >> "$tmpfile" >&- # try to close the archive
+# The following command seems both superfluous and causing an 'I/O error' message
+# echo >> "$tmpfile" >&- # try to close the archive
fsize=`cat "$tmpfile" | wc -c | tr -d " "`