build/ci: set TERM if it isn't already

This commit is contained in:
Starbeamrainbowlabs 2021-02-14 03:17:56 +00:00
parent f78c52d8f1
commit 2b03162aab
Signed by: sbrl
GPG Key ID: 1BE5172E637709C2
1 changed files with 4 additions and 0 deletions

4
build
View File

@ -277,6 +277,10 @@ task_docs() {
# ██ ██
# ██████ ██
task_ci() {
if [[ -z "${TERM}" ]]; then
export TERM=xterm-256color;
fi
tasks_run setup setup-dev
NODE_ENV="production" tasks_run client docs archive;