2020-12-12 20:21:49 -07:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
2021-01-23 16:51:46 -07:00
|
|
|
if [ -f ./settings.json ]; then
|
|
|
|
|
echo "\$theme-name: \"$(./node_modules/.bin/strip-json-comments settings.json | ./node_modules/.bin/json shared_pages.theme)\";" > ./public/css/_theme-selector.scss
|
|
|
|
|
else
|
|
|
|
|
echo "\$theme-name: \"Exor\";" > ./public/css/_theme-selector.scss
|
|
|
|
|
fi
|