We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 44cfce7 + 5705758 commit 79f631aCopy full SHA for 79f631a
cmd/cycles.go
@@ -31,6 +31,11 @@ var cyclesCmd = &cobra.Command{
31
Short: "Prints cycles in dependency chains.",
32
Long: `Will show all the cycles in the dependencies of the project.`,
33
RunE: func(cmd *cobra.Command, args []string) error {
34
+
35
+ if len(args) != 0 {
36
+ return fmt.Errorf("cycles does not take any arguments")
37
+ }
38
39
overview := getDepInfo(nil)
40
var cycleChains []Chain
41
var temp Chain
0 commit comments