Skip to content

Commit 3cf686b

Browse files
authored
Fix chroot builds fail to copy out binaries (AppImage#78)
* Fix chroot builds fail to copy out binaries Closes AppImage#77; thanks @Randrianasulu * actions/download-artifact@v4
1 parent 68953fd commit 3cf686b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/chroot/chroot_build.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,5 +89,5 @@ esac
8989

9090
cd "$repo_root_dir"
9191
mkdir -p ./out/
92-
sudo find "$tempdir"/miniroot/ -type f -executable -name 'runtime' -exec cp {} "out/runtime-${appimage_arch}" \;
93-
sudo find "$tempdir"/miniroot/ -type f -executable -name 'runtime.debug' -exec cp {} "out/runtime-${appimage_arch}.debug" \;
92+
sudo find "$tempdir"/miniroot/ -type f -executable -name "runtime-${appimage_arch}" -exec cp {} "out/runtime-${appimage_arch}" \;
93+
sudo find "$tempdir"/miniroot/ -type f -executable -name "runtime-${appimage_arch}.debug" -exec cp {} "out/runtime-${appimage_arch}.debug" \;

0 commit comments

Comments
 (0)