mirror of
https://github.com/yrzam/yrzam-hugo-theme.git
synced 2025-04-06 23:02:30 +00:00
16 lines
243 B
Bash
Executable File
16 lines
243 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
cd "$(dirname "$0")/.."
|
|
[ -d ../../themes ] && cd ../..
|
|
|
|
rm -rf public
|
|
hugo
|
|
cd public
|
|
|
|
find . -type f -exec sha256sum {} \; | \
|
|
sed -E 's/(\w*) \.\//\1 /' | \
|
|
gpg -so index.sig --batch --yes
|
|
|
|
cp -f index.sig ../static
|