Created
February 11, 2017 09:54
-
-
Save hemc4/625aa141a80a45682f6085e77350f655 to your computer and use it in GitHub Desktop.
hugo npm build
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# delete everything in public except .git | |
find public -path public/.git -prune -o -exec rm -rf {} \; 2> /dev/null | |
# Build a fresh copy | |
hugo -v |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment