From e9a39878a8169e03bbd4c3985cf1b52dde8fb725 Mon Sep 17 00:00:00 2001 From: Lusheng Ji Date: Tue, 30 Jun 2020 12:47:49 -0400 Subject: [PATCH] Fix for gen-cloud-init.sh warning msg Change-Id: Ic6fc8732137bc89c2155347a3f4b8013e8596dd4 Signed-off-by: Lusheng Ji Issue-ID: INT-112 --- tools/k8s/bin/gen-cloud-init.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/k8s/bin/gen-cloud-init.sh b/tools/k8s/bin/gen-cloud-init.sh index c0fe1600..42ecff41 100755 --- a/tools/k8s/bin/gen-cloud-init.sh +++ b/tools/k8s/bin/gen-cloud-init.sh @@ -33,7 +33,7 @@ usage() { DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )" set -a -RCS="$(find $DIR/../etc -type f -maxdepth 1)" +RCS="$(find $DIR/../etc -maxdepth 1 -type f)" for RC in $RCS; do echo "reading in values in $RC" source $RC -- 2.16.6