From c6d7cdd6d796d6e6b6430c8b0952e68b3663ad9a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabiano=20Grac=CC=A7as?= Date: Tue, 4 Jan 2022 20:11:02 +0100 Subject: [PATCH] use cammel case MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Fabiano Graças --- _support/scripts/ci.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/_support/scripts/ci.sh b/_support/scripts/ci.sh index 245802f..fb134fb 100755 --- a/_support/scripts/ci.sh +++ b/_support/scripts/ci.sh @@ -101,7 +101,7 @@ function scanast() { rm -f security.log } -function Scan() { +function scan() { gosec -fmt=sarif -out=results.sarif -exclude-dir=internal -exclude-dir=vendor -severity=high ./... } @@ -117,11 +117,11 @@ function usage() { } case "$1" in - fmtcheck) checkfmt ;; + fmtCheck) checkfmt ;; format) goFormat ;; lint) lint ;; lintDocker) lintDocker ;; - unittest) unitTest ;; + unitTest) unitTest ;; scan) scan ;; localScan) localScan ;; *) usage ;;