Skip to content

Commit dc21eff

Browse files
probonopdTheAssassin
authored andcommitted
Fix chroot builds fail to copy out binaries
Closes #77; thanks @Randrianasulu
1 parent 68953fd commit dc21eff

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)