restrict to 'i.go'-ending filenames + remove debug

This commit is contained in:
Adrien Marquès 2018-06-16 22:21:41 +02:00
parent 3e096e91b8
commit 37d212f344
1 changed files with 1 additions and 1 deletions

View File

@ -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;