From 37d212f344a5a16b5631de9696365b11143ee9bf Mon Sep 17 00:00:00 2001 From: xdrm-brackets Date: Sat, 16 Jun 2018 22:21:41 +0200 Subject: [PATCH] restrict to 'i.go'-ending filenames + remove debug --- build-controllers.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-controllers.sh b/build-controllers.sh index babbefd..861f037 100644 --- a/build-controllers.sh +++ b/build-controllers.sh @@ -16,7 +16,7 @@ CTL_PATH="`realpath $1`"; # (2) List go files # cd $CTL_PATH -GO_FILES="`ls *.go **/*.go`" +GO_FILES="`ls *i.go **/*i.go 2>/dev/null`" # (3) Create target directory in execution dir # mkdir -p $BASE_DIR/controllers;