mirror of
https://github.com/PrivSec-dev/privsec.dev
synced 2024-11-04 14:11:33 -05:00
a06d28e69a
Signed-off-by: samsepi0l <contact@simpleprivacy.fr>
13 lines
332 B
Bash
13 lines
332 B
Bash
#!/bin/bash
|
|
|
|
curl -L -s https://api.github.com/repos/gohugoio/hugo/releases/latest | grep "browser_download_url.*extended.*linux-amd64.tar.gz" | cut -d : -f 2,3 | sed 's/"//g' | xargs wget
|
|
|
|
tar xvf ./*.tar.gz
|
|
chmod u+x ./hugo
|
|
|
|
if [ "$CF_PAGES_BRANCH" == "main" ]; then
|
|
./hugo --minify
|
|
else
|
|
./hugo -b "$CF_PAGES_URL" --minify
|
|
fi
|