24 lines
581 B
Bash
24 lines
581 B
Bash
|
#!/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"
|
||
|
|
||
|
REV=${REVISION}
|
||
|
|
||
|
cd "${PRODUCTION_ROOT}/${CATEGORY_STUB}" || { echo "Failed to change directory"; ret_val=1; exit 1; }
|
||
|
ret_val=$?
|
||
|
|
||
|
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."
|
||
|
fi
|
||
|
|