snej/scripts/deploy.sh

10 lines
215 B
Bash
Raw Normal View History

2019-10-04 00:42:18 +00:00
#!/bin/bash
cd $SNEJ_ROOT
echo "deploying to $1"
mkdir -p bundle/
python3 scripts/assets.py stitch-sprites $SNEJ_ROOT/bundle/spritesheet witch_gray witch_green
scp -r index.html main.js bundle/ $1
2019-10-04 00:42:18 +00:00
echo "success!"