From 8101dd0bc704a5e2755a7c0ed41e8d3b5d0294eb Mon Sep 17 00:00:00 2001 From: Stephane Peter Date: Thu, 11 Dec 2025 02:49:39 -0800 Subject: [PATCH] Report encoding in info output for base64 --- makeself-header.sh | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/makeself-header.sh b/makeself-header.sh index 78485f0..2e037a6 100755 --- a/makeself-header.sh +++ b/makeself-header.sh @@ -410,9 +410,11 @@ do echo Target directory: "\$targetdir" echo Uncompressed size: $USIZE KB echo Compression: $COMPRESS - if test x"$ENCRYPT" != x""; then - echo Encryption: $ENCRYPT - fi + if test x"$ENCRYPT" = x"base64"; then + echo "Encoding: base64" + elif test x"$ENCRYPT" != x""; then + echo "Encryption: $ENCRYPT" + fi echo Date of packaging: $DATE echo Built with Makeself version $MS_VERSION echo Build command was: "$MS_COMMAND"