From fe28a9d07d4622c822046340688040bca6e27786 Mon Sep 17 00:00:00 2001 From: Marcus Holl Date: Wed, 27 Feb 2019 08:46:08 +0100 Subject: [PATCH] remove type from find command since this makes trouble during the central build. --- consumer-test/integrationTestController.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/consumer-test/integrationTestController.sh b/consumer-test/integrationTestController.sh index 7ea68d119..126411c6c 100755 --- a/consumer-test/integrationTestController.sh +++ b/consumer-test/integrationTestController.sh @@ -3,7 +3,7 @@ WORKSPACES_ROOT=workspaces [ -e "${WORKSPACES_ROOT}" ] && rm -rf ${WORKSPACES_ROOT} -TEST_CASES=$(find . -type f -depth 2 -name '*.yml') +TEST_CASES=$(find . -depth 2 -name '*.yml') i=0 for f in ${TEST_CASES}