temporary safeguard

This commit is contained in:
Louis Abel 2023-01-13 15:36:12 -07:00
parent cb4e047d8b
commit 4e66914c72
Signed by: label
GPG Key ID: B37E62D143879B36
2 changed files with 8 additions and 0 deletions

View File

@ -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"

View File

@ -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"