From 56b17e4d741c38f51dc030bb961eb12251d22576 Mon Sep 17 00:00:00 2001 From: "Jason N." <33561705+JasonN3@users.noreply.github.com> Date: Wed, 3 Apr 2024 10:33:56 -0400 Subject: [PATCH] exclude extra files --- xorriso/gen_input.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/xorriso/gen_input.sh b/xorriso/gen_input.sh index 4b15ef8..5520c7a 100644 --- a/xorriso/gen_input.sh +++ b/xorriso/gen_input.sh @@ -22,10 +22,10 @@ popd > /dev/null if [[ -n "${FLATPAK_DIR}" ]] then pushd "${FLATPAK_DIR}" > /dev/null - for file in $(find . -type f) + for file in $(find repo -type f) do - echo "-map ${PWD}/${file} flatpak/${file:2}" - echo "-chmod 0444 flatpak/${file:2}" + echo "-map ${PWD}/${file} flatpak/${file}" + echo "-chmod 0444 flatpak/${file}" done popd > /dev/null fi