Skip to content

Instantly share code, notes, and snippets.

View simulacra10's full-sized avatar

Norman Bauer simulacra10

View GitHub Profile
@yoichitgy
yoichitgy / hugodeploy
Last active July 1, 2022 18:19
A bash script to deploy GitHub Pages with Hugo.
#!/bin/bash
while getopts p option
do
case $option in
p) opt_p=TRUE ;;
esac
done
if [ ! -d "public" ]