The quotes around the file should not be necessary

In Go 1.2 on the Mac they result in a file created with actual
quotes.
This commit is contained in:
Clayton Coleman
2014-07-25 13:11:45 -04:00
parent fbd71c9c02
commit f7948015bd
2 changed files with 3 additions and 3 deletions

View File

@@ -36,7 +36,7 @@ find_test_dirs() {
}
# -covermode=atomic becomes default with -race in Go >=1.3
KUBE_COVER="-cover -covermode=atomic -coverprofile=\"tmp.out\""
KUBE_COVER="-cover -covermode=atomic -coverprofile=tmp.out"
cd "${KUBE_TARGET}"