diff --git a/runme.ps1 b/runme.ps1 index ef9b0df..ad6385d 100644 --- a/runme.ps1 +++ b/runme.ps1 @@ -66,7 +66,7 @@ $SCRIPT_NAME = $MyInvocation.MyCommand.Name # save the script name in a variable $DS_PROJECT_SERVER_URL = (Get-Content .\${ENV_FILENAME} | Select-String -Pattern "DS_PROJECT_SERVER_URL=" -SimpleMatch).ToString().Split("=")[1] # Script URL for update # -$PROJECT_BRANCH = "pythonize" +$PROJECT_BRANCH = "main" $PROJECT_URL = "https://raw.githubusercontent.com/MRColorR/money4band/${PROJECT_BRANCH}" # Script debug log file # diff --git a/runme.sh b/runme.sh index ccbc134..e2c5405 100644 --- a/runme.sh +++ b/runme.sh @@ -60,7 +60,7 @@ readonly SCRIPT_NAME=$(basename "$0") # save the script name in a variable not t readonly DS_PROJECT_SERVER_URL=$(grep -oP 'DS_PROJECT_SERVER_URL=\K[^#\r]+' ${ENV_FILENAME}) # Script URL for update # -readonly PROJECT_BRANCH="pythonize" +readonly PROJECT_BRANCH="main" readonly PROJECT_URL="https://raw.githubusercontent.com/MRColorR/money4band/${PROJECT_BRANCH}"