Files
ArchiSteamFarm/WebConfigGenerator/cc.sh

17 lines
230 B
Bash
Raw Normal View History

2018-04-27 04:50:21 +02:00
#!/bin/bash
set -eu
2018-04-27 05:08:49 +02:00
TARGET="../docs" # Relative to script directory
2018-04-27 04:50:21 +02:00
cd "$(dirname "$(readlink -f "$0")")"
git pull
npm install
npm run build
git reset
2018-04-27 05:17:13 +02:00
git add -A -f "$TARGET"
2018-04-27 04:50:21 +02:00
git commit -m "WebConfigGenerator build"
git push