1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-09-30 16:00:46 +00:00
TiddlyWiki5/deploy.cmd
Adrian Sampaleanu 97feef8909 Added Windows specific build scripts.
Added equivalent scripts for all .sh files and modified appropriate tiddlers to generate updated readme.md for the GitHub site.
2013-11-19 19:57:05 -05:00

18 lines
211 B
Batchfile

@echo
rem Publish to NPM
npm publish || exit 1
rem Deploy latest build to github
pushd ..\mytiddlywiki.github.com
git add --all || exit 1
git commit -m "Updates" || exit 1
git push origin || exit 1
popd