From 70da0fb3037e70d02d100310e2376b3d86f8719b Mon Sep 17 00:00:00 2001 From: Statik DK Smoke Date: Mon, 8 Sep 2025 11:35:18 -0500 Subject: [PATCH] Remove sudo from script execution commands --- wget.ubuntu.install.script | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/wget.ubuntu.install.script b/wget.ubuntu.install.script index 09cbd63..27af984 100644 --- a/wget.ubuntu.install.script +++ b/wget.ubuntu.install.script @@ -118,7 +118,7 @@ cd "$INSTALL_DIR" # Download macOS recovery image (automatically choose Sonoma - option 7) echo "Downloading macOS recovery image (Sonoma - Recommended)..." if [ -f "fetch-macOS-v2.py" ]; then - echo "7" | python3 fetch-macOS-v2.py + ./fetch-macOS-v2.py else echo "Warning: fetch-macOS-v2.py not found, attempting manual download..." # Fallback download URLs for macOS recovery images @@ -217,8 +217,8 @@ read -p "Would you like to start the macOS VM now? (y/n): " -n 1 -r echo if [[ $REPLY =~ ^[Yy]$ ]]; then echo "Starting macOS VM..." - sudo ./OpenCore-Boot.sh + ./OpenCore-Boot.sh else echo "You can start the VM later by running:" echo " cd $INSTALL_DIR && sudo ./OpenCore-Boot.sh" -fi \ No newline at end of file +fi