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