From ebc5246cddcc1ec9b5f247fa67cbe59191937da1 Mon Sep 17 00:00:00 2001 From: MarvinJWendt Date: Sat, 15 May 2021 01:59:12 +0200 Subject: [PATCH] chore(go): bump version, as go doesn't detect the other one --- pterm-ci-cmd.go | 1 - 1 file changed, 1 deletion(-) diff --git a/pterm-ci-cmd.go b/pterm-ci-cmd.go index 4911fdf..79c5423 100644 --- a/pterm-ci-cmd.go +++ b/pterm-ci-cmd.go @@ -98,7 +98,6 @@ func detectOriginURL() (url string) { func walkOverExt(path, exts string, f func(path string)) { _ = filepath.Walk(getPathTo(path), func(path string, info fs.FileInfo, err error) error { - for _, ext := range strings.Split(exts, ",") { if strings.HasSuffix(path, ext) { f(path)