toolkit/sync/sync-to-prod.sh

24 lines
598 B
Bash
Raw Permalink Normal View History

2021-07-05 06:50:25 +00:00
#!/bin/bash
# Syncs everything from staging to production
2023-01-13 22:36:12 +00:00
if [[ "$RLREL" == "lh" ]] || [[ "$RLREL" == "beta" ]]; then
exit 1
fi
# Source common variables
2021-07-06 20:33:22 +00:00
# shellcheck disable=SC2046,1091,1090
source "$(dirname "$0")/common"
2021-07-08 02:54:12 +00:00
REV=${REVISION}${APPEND_TO_DIR}
2023-05-19 18:30:50 +00:00
cd "${STAGING_ROOT}/${CATEGORY_STUB}" || { echo "Failed to change directory"; ret_val=1; exit 1; }
2021-07-05 06:50:25 +00:00
ret_val=$?
2021-07-05 06:50:25 +00:00
if [ $ret_val -eq "0" ]; then
2023-05-22 23:15:35 +00:00
TARGET="${PRODUCTION_ROOT}/${CATEGORY_STUB}/${REV/-*/}"
mkdir -p "${TARGET}"
rsync_delete_prod "${REV}" "${TARGET}"
echo "Syncing to prod completed. Please run the file list script."
2021-07-05 06:50:25 +00:00
fi
2021-07-09 18:30:49 +00:00