#!/bin/bash

set -xe

if [ "$RELOAD" = 'true' ] ; then
  reload_arg='True'
else
  reload_arg='False'
fi

python feed_ingestion/bin/exec_flows.py snapchat --skip $SKIP --days $DAYS --check-status --context '{"report": "'$REPORT'", "reload": "'$reload_arg'"}'
