Skip to content

Commit c9699d5

Browse files
committed
Testing
1 parent bd52b20 commit c9699d5

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ list-variables: # List all the variables available to make
3232
.PHONY: *
3333
MAKEFLAGS := --no-print-director
3434
SHELL := /bin/bash
35-
ifeq (true, $(shell [[ "$(DEBUG)" =~ ^(true|yes|y|on|1|TRUE|YES|Y|ON)$$ ]] && echo true))
35+
ifeq (true, $(shell [[ "$(VERBOSE)" =~ ^(true|yes|y|on|1|TRUE|YES|Y|ON)$$ ]] && echo true))
3636
.SHELLFLAGS := -cex
3737
else
3838
.SHELLFLAGS := -ce

install.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@
1313

1414
# ==============================================================================
1515

16-
TERM=xterm-256color
16+
export TERM=xterm-256color
17+
1718
SCRIPT_DIR=$([ -n "${BASH_SOURCE[0]}" ] && cd -- "$(dirname -- "${BASH_SOURCE[0]}")" &> /dev/null && pwd || dirname "$(readlink -f "$0")")
1819

1920
ORG_NAME=make-ops-tools

0 commit comments

Comments
 (0)