diff --git a/sync/sync-to-prod.delete.sh b/sync/sync-to-prod.delete.sh index b1446b2..9058255 100644 --- a/sync/sync-to-prod.delete.sh +++ b/sync/sync-to-prod.delete.sh @@ -1,6 +1,10 @@ #!/bin/bash # Syncs everything from staging to production +if [[ "$RLREL" == "lh" ]] || [[ "$RLREL" == "beta" ]]; then + exit 1 +fi + # Source common variables # shellcheck disable=SC2046,1091,1090 source "$(dirname "$0")/common" diff --git a/sync/sync-to-prod.sh b/sync/sync-to-prod.sh index d62db36..da92f66 100644 --- a/sync/sync-to-prod.sh +++ b/sync/sync-to-prod.sh @@ -1,6 +1,10 @@ #!/bin/bash # Syncs everything from staging to production +if [[ "$RLREL" == "lh" ]] || [[ "$RLREL" == "beta" ]]; then + exit 1 +fi + # Source common variables # shellcheck disable=SC2046,1091,1090 source "$(dirname "$0")/common"