Skip to content

Commit 7383957

Browse files
committed
make: remove obsolete check for jenkins
1 parent 8a85725 commit 7383957

File tree

1 file changed

+11
-13
lines changed

1 file changed

+11
-13
lines changed

Makefile.include

+11-13
Original file line numberDiff line numberDiff line change
@@ -58,19 +58,17 @@ COLOR_ECHO := /bin/echo
5858

5959
OS := $(shell uname)
6060

61-
ifeq (, ${JENKINS_URL})
62-
ifeq (0, $(shell tput colors 2>&1 > /dev/null; echo $$?))
63-
COLOR_GREEN := \033[1;32m
64-
COLOR_RED := \033[1;31m
65-
COLOR_YELLOW := \033[1;33m
66-
COLOR_PURPLE := \033[1;35m
67-
COLOR_RESET := \033[0m
68-
ifeq ($(OS),Darwin)
69-
COLOR_ECHO := echo -e
70-
SHELL=bash
71-
else
72-
COLOR_ECHO := /bin/echo -e
73-
endif
61+
ifeq (0, $(shell tput colors 2>&1 > /dev/null; echo $$?))
62+
COLOR_GREEN := \033[1;32m
63+
COLOR_RED := \033[1;31m
64+
COLOR_YELLOW := \033[1;33m
65+
COLOR_PURPLE := \033[1;35m
66+
COLOR_RESET := \033[0m
67+
ifeq ($(OS),Darwin)
68+
COLOR_ECHO := echo -e
69+
SHELL=bash
70+
else
71+
COLOR_ECHO := /bin/echo -e
7472
endif
7573
endif
7674

0 commit comments

Comments
 (0)