13 lines
No EOL
203 B
Bash
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 |