Skip to content

Commit

Permalink
build.sh: Fix to copy host and guest kernel rpm packages
Browse files Browse the repository at this point in the history
Copy the host kernel package and guest kernel rpm packages into the separate folders for the non-debian OS.
  • Loading branch information
LakshmiSaiHarika authored and ryansavino committed Jan 15, 2025
1 parent 9f07262 commit 74971e3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,8 @@ if [[ "$BUILD_PACKAGE" = "1" ]]; then
cp linux/linux-*-guest-*.deb $OUTPUT_DIR/linux/guest -v
cp linux/linux-*-host-*.deb $OUTPUT_DIR/linux/host -v
else
cp linux/kernel-*.rpm $OUTPUT_DIR/linux -v
cp linux/kernel-*host*.rpm $OUTPUT_DIR/linux/host -v
cp linux/kernel-*guest*.rpm $OUTPUT_DIR/linux/guest -v
fi

cp launch-qemu.sh ${OUTPUT_DIR} -v
Expand Down

0 comments on commit 74971e3

Please sign in to comment.