fix vault-release.sh messages

This commit is contained in:
Louis Abel 2023-10-02 21:16:35 -07:00
parent dadc382dae
commit bc72e6c7e4
Signed by: label
GPG Key ID: B37E62D143879B36
1 changed files with 2 additions and 1 deletions

View File

@ -2,6 +2,7 @@
# Syncs everything from staging to production
if [[ "$RLREL" == "lh" ]] || [[ "$RLREL" == "beta" ]]; then
echo "Lookahead nor Beta should be vaulted"
exit 1
fi
@ -18,6 +19,6 @@ if [ $ret_val -eq "0" ]; then
TARGET="${PRODUCTION_ROOT}/${VAULT_STUB}/${REV}"
mkdir -p "${TARGET}"
rsync_no_delete_prod "${REV}" "${TARGET}"
echo "Syncing to prod completed. Please run the file list script."
echo "Syncing to the vault completed. Please run the file list script."
fi