Fix variable expansion to avoid confusing error message

pull/3415/head
Thomas Stromberg 2018-12-05 10:49:17 -08:00
parent 4b33fd2dc4
commit 82668a7c0d
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@ fi
echo ""
echo ">> Cleaning up after previous test runs ..."
for stale_dir in "${TEST_ROOT}"/*; do
for stale_dir in ${TEST_ROOT}/*; do
echo "* Cleaning stale test: ${stale_dir}"
export MINIKUBE_HOME="${stale_dir}/.minikube"
export KUBECONFIG="${stale_dir}/kubeconfig"