From beae2c97e11a4c330525e6a3112b1d3b5dc9911c Mon Sep 17 00:00:00 2001 From: Phillip Date: Sat, 7 Sep 2024 23:45:17 +0100 Subject: [PATCH] More GPU fixes --- scripts/0-install.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/scripts/0-install.sh b/scripts/0-install.sh index 88e38b6..cea0b62 100644 --- a/scripts/0-install.sh +++ b/scripts/0-install.sh @@ -46,14 +46,13 @@ esac read -p 'Is this being installed on VMWare Fusion? ' vmyesno case $vmyesno in [yesYesYy]* ) - gpudriver = "vmware" + export GPU = "vmware" ;; [noNoNn]* ) - gpudriver = "nvidia" + export GPU = "nvidia" ;; * ) echo "Please answer yes (Yes, y, Y) or no (No, n, N)";; esac -export gpu = $gpudriver # Get user credentials read -p "Please enter a username " username read -rsp "Please enter a password " password