From 1dd00eb50d8ea26f028dd18c14750a169e9c61a7 Mon Sep 17 00:00:00 2001 From: "Jason N." <33561705+JasonN3@users.noreply.github.com> Date: Tue, 27 Feb 2024 17:48:46 -0500 Subject: [PATCH] return to original dir after finding files --- xorriso/gen_input.sh.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/xorriso/gen_input.sh.in b/xorriso/gen_input.sh.in index 88a1eba..5d5dfcd 100644 --- a/xorriso/gen_input.sh.in +++ b/xorriso/gen_input.sh.in @@ -5,10 +5,11 @@ echo "-outdev $(pwd)/build/deploy.iso" echo "-boot_image any replay" echo "-joliet on" echo "-compliance joliet_long_names" -cd container +pushd container for file in $(find ${IMAGE_NAME}-${IMAGE_TAG}) do echo "-map $(pwd)/${file} ${file}" echo "-chmod 0444 ${file}" done +popd echo "-end" \ No newline at end of file