Skip to content

Commit

Permalink
Fix general cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
ProgHaj committed Oct 27, 2023
1 parent 85b3649 commit 587d9e7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,4 @@ test/resolve/testdata/nuget/obj
test/resolve/testdata/nuget/**/obj
debricked.fingerprints.wfp
test/resolve/testdata/gomod/gomod.debricked.lock
.debricked.fingerprints.wfp
/mvnproj/target
3 changes: 2 additions & 1 deletion internal/cmd/callgraph/callgraph.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,8 @@ Special Terms | Meaning
"[class]" | matches any single non-Separator character against a class of characters ([see "character classes"])
"{alt1,...}" | matches a sequence of characters if one of the comma-separated alternatives matches
Exclude flags could alternatively be set using DEBRICKED_EXCLUSIONS="path1,path2,path3".
Example:
$ debricked files resolve . `+exampleFlags)
cmd.Flags().BoolVar(&buildDisabled, NoBuildFlag, false, `Do not automatically build all source code in the project to enable call graph generation.
Expand All @@ -75,7 +77,6 @@ func RunE(callgraph callgraph.IGenerator) func(_ *cobra.Command, args []string)
}

err := callgraph.GenerateWithTimer(args, viper.GetStringSlice(ExclusionFlag), configs, viper.GetInt(GenerateTimeoutFlag))
// err := callgraph.Generate(args, viper.GetStringSlice(ExclusionFlag), configs, nil)

return err
}
Expand Down

0 comments on commit 587d9e7

Please sign in to comment.