From 5635805f62d6d36b8526af0d523a451e97f0c016 Mon Sep 17 00:00:00 2001
From: Marc Brugger <github@bakito.ch>
Date: Sun, 22 Dec 2024 05:34:33 +0100
Subject: [PATCH] Update Makefile

---
 Makefile        | 2 +-
 cmd/fetch.go    | 4 ++--
 cmd/makefile.go | 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/Makefile b/Makefile
index c9f6ef8..be5774b 100644
--- a/Makefile
+++ b/Makefile
@@ -10,7 +10,7 @@ tidy:
 	go mod tidy
 
 # Run tests
-test: tb.ginkgo tidy lint
+test: tb.ginkgo
 	$(TB_GINKGO) -r --cover --coverprofile=coverage.out
 
 release: tb.goreleaser tb.semver
diff --git a/cmd/fetch.go b/cmd/fetch.go
index 59999a2..3a41cb0 100644
--- a/cmd/fetch.go
+++ b/cmd/fetch.go
@@ -27,6 +27,6 @@ func init() {
 
 func addConfigFlag(cmd *cobra.Command) {
 	cmd.Flags().StringP(flagConfig, "c", "",
-		"The config file to be used. (default 1. '.toolbox.yaml' current dir, " +
-		"2. '~/.config/toolbox.yaml', 3. '~/.toolbox.yaml')")
+		"The config file to be used. (default 1. '.toolbox.yaml' current dir, "+
+			"2. '~/.config/toolbox.yaml', 3. '~/.toolbox.yaml')")
 }
diff --git a/cmd/makefile.go b/cmd/makefile.go
index 0cebb28..2e459b9 100644
--- a/cmd/makefile.go
+++ b/cmd/makefile.go
@@ -36,6 +36,6 @@ func init() {
 	makefileCmd.Flags().
 		StringVar(&toolsGo, flagToolsGo, "tools.go", "The tools.go file to check for tools dependencies")
 	makefileCmd.Flags().
-		BoolVar(&renovate, "renovate", false, "If enables, renovate config is added to the Makefile " + 
+		BoolVar(&renovate, "renovate", false, "If enables, renovate config is added to the Makefile "+
 			"(renovate.json file, if existing)")
 }