Skip to content

Commit

Permalink
Update bool logic
Browse files Browse the repository at this point in the history
  • Loading branch information
robbertvanginkel committed Sep 24, 2019
1 parent 3879a79 commit 0386097
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion thrift/thrift-gen/generate.go
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ func runThrift(inFile string, outDir string) error {
args := []string{
"--gen", goArgs, "-out", outDir, inFile,
}
if *thriftNoRecurse == false {
if !*thriftNoRecurse {
args = append(args, "-r")
}
if err := execThrift(args...); err != nil {
Expand Down

0 comments on commit 0386097

Please sign in to comment.