From cc4a3576641cfd3c0268c1cf62a8f75640e70148 Mon Sep 17 00:00:00 2001 From: Eric Paris Date: Tue, 24 Jan 2017 14:45:20 -0500 Subject: [PATCH] Fix undefined KEEP_TMP in verify-godeps.sh --- hack/verify-godeps.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hack/verify-godeps.sh b/hack/verify-godeps.sh index 91b91e08419..391e5ff453a 100755 --- a/hack/verify-godeps.sh +++ b/hack/verify-godeps.sh @@ -61,7 +61,7 @@ else _tmpdir="${TMP_GOPATH}" fi -if [[ -z KEEP_TMP ]]; then +if [[ -z ${KEEP_TMP:-} ]]; then KEEP_TMP=false fi function cleanup {