Skip to content
Snippets Groups Projects
Commit ada25682 authored by Sam Gleske's avatar Sam Gleske
Browse files

Version bump. enable_colors checking added.

parent bc83b354
No related branches found
No related tags found
No related merge requests found
......@@ -160,6 +160,17 @@ function preflight() {
red_echo " does not exist!"
STATUS=1
fi
#test enable_colors environment variable (must be bool)
if [ ! "${enable_colors}" = "true" ] && [ ! "${enable_colors}" = "false" ];then
red_echo -n "enable_colors="
yellow_echo -n "${enable_colors}"
red_echo -n "is not a valid option for enable_colors! Must be "
yellow_echo -n "true"
red_echo -n "or "
yellow_echo -n "false"
red_echo "." 1>&2
STATUS=1
fi
#test issues_enabled environment variable (must be bool)
if [ ! "${issues_enabled}" = "true" ] && [ ! "${issues_enabled}" = "false" ];then
red_echo -n "issues_enabled="
......
VERSION="v0.2"
VERSION="v0.2.2"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment