From 51ea4857637279eceaafe8f8e02e07b77c75acc8 Mon Sep 17 00:00:00 2001 From: Hang Yin Date: Fri, 8 May 2026 15:24:21 -0700 Subject: [PATCH] Fix tar option injection in mk-image-mr helper --- scripts/bin/mk-image-mr.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/bin/mk-image-mr.sh b/scripts/bin/mk-image-mr.sh index b84cd74..71ff61e 100755 --- a/scripts/bin/mk-image-mr.sh +++ b/scripts/bin/mk-image-mr.sh @@ -99,7 +99,7 @@ echo "Creating final archive: $OUTPUT_FILE" # Change to the flattened directory and create archive without directory structure cd "$FLATTEN_DIR" -tar -czf "../$OUTPUT_FILE" * +tar -czf "../$OUTPUT_FILE" -- * cd - >/dev/null # Move the final file to the current working directory