We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb7887f commit ac42de1Copy full SHA for ac42de1
1 file changed
bin/install-package-tests
@@ -15,11 +15,18 @@ is_numeric() {
15
*) return 0;; # returns 0 if numeric
16
esac
17
}
18
-# Promt color vars.
+# Prompt color vars.
19
C_RED="\033[31m"
20
C_BLUE="\033[34m"
21
NO_FORMAT="\033[0m"
22
23
+# If running in CI, don't use colors.
24
+if [ -n "${CI}" ]; then
25
+ C_RED=""
26
+ C_BLUE=""
27
+ NO_FORMAT=""
28
+fi
29
+
30
HOST=localhost
31
PORT=""
32
HOST_STRING=''
0 commit comments