Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dep_install.sh to add xorriso to install commands #11

Merged
merged 1 commit into from
Feb 1, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions compile/dep_install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,18 +26,18 @@ while true; do
[Aa])
echo -e "\033[1m[NOTIFY]\033[0m Proceeding with pacman."
sudo --user=root pacman -Sy
sudo --user=root pacman -S make python gcc binutils nasm qemu
sudo --user=root pacman -S make python gcc binutils nasm xorriso qemu
break
;;
[Dd])
echo -e "\033[1m[NOTIFY]\033[0m Proceeding with APT."
sudo --user=root apt update
sudo --user=root apt install make python3 gcc binutils nasm qemu-system-x86_64
sudo --user=root apt install make python3 gcc binutils nasm xorriso qemu-system-x86_64
break
;;
[Ff])
echo -e "\033[1m[NOTIFY]\033[0m Proceeding with DNF."
sudo --user=root dnf install make python3 gcc binutils nasm qemu
sudo --user=root dnf install make python3 gcc binutils nasm xorriso qemu
break
;;
*)
Expand Down