film-dev-cost-scraper/bundle.sh
2024-08-26 01:08:35 +01:00

13 lines
No EOL
203 B
Bash

#!/usr/bin/env bash
set -ex
DATAFILE=$1
DIR=$(mktemp -p . -d)
poetry run python3 postprocessor/ $DATAFILE $DIR/index.html
cp $DATAFILE $DIR/rawdata.json
zip --junk-paths bundle.zip $DIR/*
rm -r $DIR