Skip to content

Commit

Permalink
More compatible base64 handling
Browse files Browse the repository at this point in the history
  • Loading branch information
megastep committed Aug 22, 2024
1 parent affe5e3 commit 949b599
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion makeself.sh
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ do
preextract_file="$2"
shift 2 || { MS_Usage; exit 1; }
test -r "$preextract_file" || { echo "Unable to open pre-extraction script: $preextract_file" >&2; exit 1; }
PREEXTRACT_ENCODED=`base64 "$preextract_file"`
PREEXTRACT_ENCODED=`base64 < "$preextract_file"`
;;
--cleanup)
CLEANUP_SCRIPT="$2"
Expand Down

0 comments on commit 949b599

Please sign in to comment.