1
Fork 0
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
theorangeone.net-legacy/scripts/build-less.sh

17 lines
372 B
Bash
Executable file

#!/usr/bin/env bash
set -e
if [ $BUILD_PRODUCTION == "true" ]
then
echo ">>> WARNING: Building in Production Mode!"
fi
echo ">> Building LESS..."
lessc --silent static/src/less/style.less static/build/css/style.css
if [ $BUILD_PRODUCTION == "true" ]
then
echo ">> Compressing LESS..."
cleancss -d --s0 -o static/build/css/style.css static/build/css/style.css
fi