Files
ArchiSteamFarm/WebConfigGenerator/cc.sh
JustArchi 108ab946ca Misc
2018-04-27 04:51:58 +02:00

17 lines
196 B
Bash
Executable File

#!/bin/bash
set -eu
OUTPUT="dist"
cd "$(dirname "$(readlink -f "$0")")"
git pull
npm install
npm run build
git reset
git add -A -f "$OUTPUT"
git commit -m "WebConfigGenerator build"
git push