Skip to content

Commit

Permalink
Fix duplicate output of target names when listing targets (#103)
Browse files Browse the repository at this point in the history
* Fix duplicate output of target names when listing targets

* Updated version to v1.2.6
  • Loading branch information
jfrohnhofen authored Feb 7, 2022
1 parent 986f7a6 commit 6280e36
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmd/build.go
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ func runBuild(args []string, mode mode, modeArgs []string) {
}
fmt.Printf(" //%s", name)
if target.Description != "" {
fmt.Printf(" //%s (%s)", name, target.Description)
fmt.Printf(" (%s)", target.Description)
}
fmt.Println()
}
Expand Down
2 changes: 1 addition & 1 deletion util/util.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
"gopkg.in/yaml.v2"
)

var DbtVersion = []uint{1, 2, 5}
var DbtVersion = []uint{1, 2, 6}

// ModuleFileName is the name of the file describing each module.
const ModuleFileName = "MODULE"
Expand Down

0 comments on commit 6280e36

Please sign in to comment.