We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 191561f commit aa3c55eCopy full SHA for aa3c55e
pkg/makefile/.toolbox.mk.tpl
@@ -5,7 +5,7 @@ TB_LOCALDIR ?= $(shell which cygpath > /dev/null 2>&1 && cygpath -m $$(pwd) || p
5
## Location to install dependencies to
6
TB_LOCALBIN ?= $(TB_LOCALDIR)/bin
7
$(TB_LOCALBIN):
8
- mkdir -p $(TB_LOCALBIN)
+ if [ ! -e $(TB_LOCALBIN) ]; then mkdir -p $(TB_LOCALBIN); fi
9
10
## Tool Binaries
11
{{- range .Tools }}
0 commit comments