mirror of
https://github.com/yrzam/yrzam-hugo-theme.git
synced 2025-04-07 07:12:28 +00:00
13 lines
274 B
Bash
Executable File
13 lines
274 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
cd "$(dirname "$0")/.."
|
|
[ -d ./themes/yrzam ] && cd ./themes/yrzam
|
|
|
|
VARS=$(printenv | \
|
|
grep -E 'THEME_.*' | \
|
|
sed -e 's/[= ].*//g' | sed -e 's/^/\$/' | tr '\n' ' '
|
|
)
|
|
|
|
envsubst "$VARS" < "./assets/css/variables.scss.tmpl" > "./assets/css/variables.scss"
|