Some improvements to #5687

This commit is contained in:
nikhiljindal
2015-03-26 14:27:42 -07:00
parent aa417ca2db
commit f56aa58741
2 changed files with 3 additions and 8 deletions

View File

@@ -55,7 +55,7 @@ runTests() {
trap cleanup EXIT
# Convert the CSV to an array of API versions to test
IFS=',' read -a apiVersions <<< ${KUBE_TEST_API_VERSIONS}
IFS=',' read -a apiVersions <<< "${KUBE_TEST_API_VERSIONS}"
for apiVersion in "${apiVersions[@]}"; do
runTests $apiVersion
runTests "${apiVersion}"
done