diff --git a/scripts/chroot/chroot_build.sh b/scripts/chroot/chroot_build.sh index 7c8f624..8db1474 100755 --- a/scripts/chroot/chroot_build.sh +++ b/scripts/chroot/chroot_build.sh @@ -89,5 +89,5 @@ esac cd "$repo_root_dir" mkdir -p ./out/ -sudo find "$tempdir"/miniroot/ -type f -executable -name 'runtime' -exec cp {} "out/runtime-${appimage_arch}" \; -sudo find "$tempdir"/miniroot/ -type f -executable -name 'runtime.debug' -exec cp {} "out/runtime-${appimage_arch}.debug" \; +sudo find "$tempdir"/miniroot/ -type f -executable -name "runtime-${appimage_arch}" -exec cp {} "out/runtime-${appimage_arch}" \; +sudo find "$tempdir"/miniroot/ -type f -executable -name "runtime-${appimage_arch}.debug" -exec cp {} "out/runtime-${appimage_arch}.debug" \;