1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-06-15 18:09:55 +00:00
TiddlyWiki5/deploy.sh
2013-10-03 14:44:48 +01:00

19 lines
276 B
Bash
Executable File

#!/bin/bash
# Deploy latest build to github
# This deployment script needs several improvements:
# 1) deploying to NPM
# 2) deploying to TiddlySpace
pushd ../jermolene.github.com
git add --all || exit 1
git commit -m "Updates" || exit 1
git push origin || exit 1
popd