From a05dcaac6758088d2f1abc1eb1e9d2eb4aa587e2 Mon Sep 17 00:00:00 2001 From: Clayton Coleman Date: Thu, 14 Jul 2016 12:49:49 -0400 Subject: [PATCH] Makefile should use `paste ... -` for posix semantics --- hack/make-rules/test-integration.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hack/make-rules/test-integration.sh b/hack/make-rules/test-integration.sh index f594ef99afc..5eb764cc3af 100755 --- a/hack/make-rules/test-integration.sh +++ b/hack/make-rules/test-integration.sh @@ -60,7 +60,7 @@ runTests() { # TODO: Re-enable race detection when we switch to a thread-safe etcd client # KUBE_RACE="-race" make -C "${KUBE_ROOT}" test \ - WHAT="$(kube::test::find_integration_test_dirs | paste -sd' ')" \ + WHAT="$(kube::test::find_integration_test_dirs | paste -sd' ' -)" \ KUBE_GOFLAGS="${KUBE_GOFLAGS:-} -tags 'integration no-docker'" \ KUBE_RACE="" \ KUBE_TIMEOUT="${KUBE_TIMEOUT}" \