From 63f0f7f242849e0204dd08b19d6d2e7f977a9e3b Mon Sep 17 00:00:00 2001 From: Justin Donofrio Date: Sun, 6 Oct 2024 13:52:41 -0400 Subject: [PATCH] Fix build scripts 2 --- License => license | 0 scripts/build_appimage.sh | 2 +- scripts/build_linux.sh | 2 +- scripts/build_mac.sh | 2 +- scripts/build_windows.bat | 2 +- 5 files changed, 4 insertions(+), 4 deletions(-) rename License => license (100%) diff --git a/License b/license similarity index 100% rename from License rename to license diff --git a/scripts/build_appimage.sh b/scripts/build_appimage.sh index ea573e0..6d07fd3 100755 --- a/scripts/build_appimage.sh +++ b/scripts/build_appimage.sh @@ -8,7 +8,7 @@ FOLDER_NAME=$(basename "$PWD") if [ "$FOLDER_NAME" == "scripts" ]; then echo "You are in the scripts folder. Changing to the parent directory..." cd .. -elif [ "$FOLDER_NAME" != "OnTheSpot" ]; then +elif [ "$FOLDER_NAME" != "onthespot" ]; then echo "Make sure that you are inside the project folder. Current folder is: $FOLDER_NAME" exit 1 fi diff --git a/scripts/build_linux.sh b/scripts/build_linux.sh index c464bbf..df09677 100755 --- a/scripts/build_linux.sh +++ b/scripts/build_linux.sh @@ -8,7 +8,7 @@ FOLDER_NAME=$(basename "$PWD") if [ "$FOLDER_NAME" == "scripts" ]; then echo "You are in the scripts folder. Changing to the parent directory..." cd .. -elif [ "$FOLDER_NAME" != "OnTheSpot" ]; then +elif [ "$FOLDER_NAME" != "onthespot" ]; then echo "Make sure that you are inside the project folder. Current folder is: $FOLDER_NAME" exit 1 fi diff --git a/scripts/build_mac.sh b/scripts/build_mac.sh index 4fdd80b..c1b651e 100755 --- a/scripts/build_mac.sh +++ b/scripts/build_mac.sh @@ -8,7 +8,7 @@ FOLDER_NAME=$(basename "$PWD") if [ "$FOLDER_NAME" == "scripts" ]; then echo "You are in the scripts folder. Changing to the parent directory..." cd .. -elif [ "$FOLDER_NAME" != "OnTheSpot" ]; then +elif [ "$FOLDER_NAME" != "onthespot" ]; then echo "Make sure that you are inside the project folder. Current folder is: $FOLDER_NAME" exit 1 fi diff --git a/scripts/build_windows.bat b/scripts/build_windows.bat index cf93414..c76d709 100644 --- a/scripts/build_windows.bat +++ b/scripts/build_windows.bat @@ -8,7 +8,7 @@ for %%F in ("%cd%") do set FOLDER_NAME=%%~nxF if /i "%FOLDER_NAME%"=="scripts" ( echo You are in the scripts folder. Changing to the parent directory... cd .. -) else if /i not "%FOLDER_NAME%"=="OnTheSpot" ( +) else if /i not "%FOLDER_NAME%"=="onthespot" ( echo Make sure that you are inside the project folder. Current folder is: %FOLDER_NAME% timeout /t 10 >nul exit /b 1