#!/bin/bash

set -e

echo "Running script: $SCRIPT"

if [ $SCRIPT == "backfill_vat_summary" ] || [ $SCRIPT == "perform_legacy_contract_sync" ] || [ $SCRIPT == "ingest_vat_summary" ]
then
    python "scripts/${SCRIPT}.py" backfill.csv
else
    python "scripts/${SCRIPT}.py"
fi
