mirror of
https://github.com/tommytran732/tommytran.io
synced 2024-11-12 13:01:33 -05:00
8 lines
118 B
Bash
8 lines
118 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
if [ "$CF_PAGES_BRANCH" == "production" ]; then
|
||
|
hugo --minify
|
||
|
else
|
||
|
hugo -b $CF_PAGES_URL --minify
|
||
|
fi
|