Skip to content

Commit

Permalink
Fix merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
sbalka committed Feb 10, 2020
2 parents f8d6353 + 0db8543 commit dadb51a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion cmd/scan.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ const (
toolFortify = "fortify"
toolGosec = "gosec"
toolDependencyCheck = "dependencycheck"
toolBrakeman = "brakeman"
)

// scanCmd represents the scan command
Expand Down Expand Up @@ -222,7 +223,7 @@ func init() {

func validTool(tool string) bool {
switch tool {
case toolAppSpider, toolBandit, toolCheckmarx, toolFindSecBugs, toolNetsparker, toolZap, toolFortify, toolGosec, toolDependencyCheck:
case toolAppSpider, toolBandit, toolCheckmarx, toolFindSecBugs, toolNetsparker, toolZap, toolFortify, toolGosec, toolDependencyCheck, toolBrakeman:
return true
default:
return false
Expand Down
2 changes: 1 addition & 1 deletion cmd/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ var versionCmd = &cobra.Command{
Use: "version",
Short: "prints version number of KDT",
Run: func(cmd *cobra.Command, args []string) {
fmt.Println("KDT Kondukto Client v1.0.6")
fmt.Println("KDT Kondukto Client v1.0.7")
},
}

Expand Down

0 comments on commit dadb51a

Please sign in to comment.