#!/bin/bash # Syncs everything from SIG production to vault if [[ "$RLREL" == "lh" ]] || [[ "$RLREL" == "beta" ]]; then echo "Lookahead nor Beta should be vaulted" exit 1 fi # Source common variables # shellcheck disable=SC2046,1091,1090 source "$(dirname "$0")/common" MAJOR=${RLVER} PRE=${PREREV} cd "${PRODUCTION_ROOT}/${SIG_CATEGORY_STUB}" || { echo "Failed to change directory"; ret_val=1; exit 1; } ret_val=$? if [ $ret_val -eq "0" ]; then TARGET="${PRODUCTION_ROOT}/${SIG_VAULT_STUB}/${PRE}" mkdir -p "${TARGET}" rsync_no_delete_prod "${MAJOR}" "${TARGET}" echo "Syncing to the vault completed. Please run the file list script." fi