snej/scripts/deploy.sh

11 lines
212 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 $1 || exit
mkdir -p bundle/
python3 scripts/assets.py stitch-sprites $SNEJ_ROOT/bundle/spritesheet
scp -r index.html main.js bundle/ $1
2019-10-04 00:42:18 +00:00
echo "success!"