8 lines
120 B
Plaintext
8 lines
120 B
Plaintext
|
#!/usr/bin/env sh
|
||
|
|
||
|
# commit and push...
|
||
|
git add .;git commit -m"$@";git push -u origin master
|
||
|
|
||
|
# build the site
|
||
|
hugo -D
|