Skip to content

Commit

Permalink
Update Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
bakito committed Dec 22, 2024
1 parent d842355 commit 5635805
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions cmd/fetch.go
Original file line number Diff line number Diff line change
Expand Up @@ -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')")
}
2 changes: 1 addition & 1 deletion cmd/makefile.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)")
}

0 comments on commit 5635805

Please sign in to comment.