From 3615024864cccdb67169c24957e900bac05abc91 Mon Sep 17 00:00:00 2001 From: "Jason N." <33561705+JasonN3@users.noreply.github.com> Date: Tue, 2 Apr 2024 16:50:56 -0400 Subject: [PATCH] code quality --- xorriso/gen_input.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/xorriso/gen_input.sh b/xorriso/gen_input.sh index 6fa2d66..85cd20b 100644 --- a/xorriso/gen_input.sh +++ b/xorriso/gen_input.sh @@ -14,17 +14,17 @@ echo "-compliance joliet_long_names" # continue # fi # echo "-map ${PWD}/results/${file} ${file:2}" -# echo "-chmod 0444 ${file}" +# echo "-chmod 0444 ${file:2}" #done #popd > /dev/null if [[ -n "${FLATPAK_DIR}" ]] then pushd "${FLATPAK_DIR}" > /dev/null - for file in $(find * -type f) + for file in $(find . -type f) do - echo "-map ${PWD}/${file} flatpak/${file}" - echo "-chmod 0444 flatpak/${file}" + echo "-map ${PWD}/${file} flatpak/${file:2}" + echo "-chmod 0444 flatpak/${file:2}" done popd > /dev/null fi