Skip to content

Commit 8101dd0

Browse files
committed
Report encoding in info output for base64
1 parent 0124d05 commit 8101dd0

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

makeself-header.sh

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -410,9 +410,11 @@ do
410410
echo Target directory: "\$targetdir"
411411
echo Uncompressed size: $USIZE KB
412412
echo Compression: $COMPRESS
413-
if test x"$ENCRYPT" != x""; then
414-
echo Encryption: $ENCRYPT
415-
fi
413+
if test x"$ENCRYPT" = x"base64"; then
414+
echo "Encoding: base64"
415+
elif test x"$ENCRYPT" != x""; then
416+
echo "Encryption: $ENCRYPT"
417+
fi
416418
echo Date of packaging: $DATE
417419
echo Built with Makeself version $MS_VERSION
418420
echo Build command was: "$MS_COMMAND"

0 commit comments

Comments
 (0)