Merge pull request #40379 from eparis/fix-verify-godep

Fix undefined KEEP_TMP in verify-godeps.sh
pull/6/head
Eric Paris 2017-01-24 14:51:25 -05:00 committed by GitHub
commit 73b547a8f5
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@ else
_tmpdir="${TMP_GOPATH}" _tmpdir="${TMP_GOPATH}"
fi fi
if [[ -z KEEP_TMP ]]; then if [[ -z ${KEEP_TMP:-} ]]; then
KEEP_TMP=false KEEP_TMP=false
fi fi
function cleanup { function cleanup {