Promote Stable Version #1

Merged
me merged 144 commits from prod into main 2026-08-05 15:44:08 -07:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 89c0d0589c - Show all commits
+1 -1
View File
@@ -13,7 +13,7 @@ dir="`basename $DIR`"
## Validations ## ## Validations ##
if [[ "$DIR" != *"-clone" || "$DIR" != *"-SYNC" ]]; then if [[ "$DIR" != *"-clone" && "$DIR" != *"-SYNC" ]]; then
echo "'$DIR' is not labeled as a CLONE or SYNC. Skipping download." echo "'$DIR' is not labeled as a CLONE or SYNC. Skipping download."
exit 0 exit 0
fi fi
+1 -1
View File
@@ -14,7 +14,7 @@ dir="`basename $DIR`"
## Validations ## ## Validations ##
if [[ "$DIR" != *"-MASTER" || "$DIR" != *"-SYNC" ]]; then if [[ "$DIR" != *"-MASTER" && "$DIR" != *"-SYNC" ]]; then
echo "'$DIR' is not labeled as a MASTER or SYNC. Skipping upload." echo "'$DIR' is not labeled as a MASTER or SYNC. Skipping upload."
exit 0 exit 0
fi fi