mirror of
https://github.com/OliveTin/OliveTin
synced 2025-10-30 12:57:06 +00:00
* feature: Helper scripts for ssh, themes, etc * cicd: Update goreleaser to support v2 .goreleaser.yml files
13 lines
356 B
Bash
Executable File
13 lines
356 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
olivetin-get-git-repo "$1" "/config/custom-webui/themes/$2"
|
|
|
|
if grep -E -q "^themeName" /config/config.yaml; then
|
|
echo "Updating theme in config file"
|
|
sed -i "s/^themeName:.*/themeName: $2/g" /config/config.yaml
|
|
else
|
|
echo "themeName: $2" >> /config/config.yaml
|
|
fi
|
|
|
|
echo "You must restart OliveTin for theme changes to take effect."
|