From 3049d720394786bf0e5a9bbe1229b2155e23a666 Mon Sep 17 00:00:00 2001 From: John Impallomeni Date: Wed, 27 Sep 2017 16:31:33 -0600 Subject: [PATCH] Fixed all output of the word Nvidia to uppercase Fixed string output of the word Nvidia to uppercase with NVIDIA. --- automate-eGPU.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/automate-eGPU.sh b/automate-eGPU.sh index 74f4801..4d6d4d1 100755 --- a/automate-eGPU.sh +++ b/automate-eGPU.sh @@ -225,11 +225,11 @@ function GeneralChecks() then if [[ "$web_driver" == "" ]] then - echo "No Nvidia web driver detected." + echo "No NVIDIA web driver detected." else if [[ $running_official == 1 ]] then - echo "You are running official Nvidia driver." + echo "You are running official NVIDIA driver." fi fi fi @@ -704,7 +704,7 @@ function Main() echo "\033[1mDetected eGPU\033[0m\n" $egpu_name echo "\033[1mCurrent OS X\033[0m\n" $product_version $build_version echo "\033[1mPrevious OS X\033[0m\n" $previous_product_and_build_version - echo "\033[1mLatest installed Nvidia web driver\033[0m\n" $previous_web_driver_info + echo "\033[1mLatest installed NVIDIA web driver\033[0m\n" $previous_web_driver_info volume_name=$(diskutil info / | awk '/Volume Name/ {print substr ($0, index ($0,$3))}') @@ -735,7 +735,7 @@ function Main() then ModifyPackage else - echo "Web driver not found. Nvidia may have changed their web driver search service." + echo "Web driver not found. NVIDIA may have changed their web driver search service." exit fi fi