projects
/
software
/
elephly-net.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Add script to simplify publishing.
[software/elephly-net.git]
/
web
1
#!/bin/sh
2
3
case
$1
in
4
build
)
haunt build
;;
5
test
)
haunt serve
-w
;;
6
publish
)
rsync
-azvhr
site
/
elephly.net
:
~
/
elephly.net
/;;
7
*)
echo
"use build, test, or publish"
8
esac