1
0
mirror of https://github.com/tommytran732/tommytran.io synced 2024-09-19 14:44:43 -04:00
tommytran.io/cloudflare-build.sh

8 lines
118 B
Bash
Raw Normal View History

#!/bin/bash
if [ "$CF_PAGES_BRANCH" == "production" ]; then
hugo --minify
else
hugo -b $CF_PAGES_URL --minify
fi