Skip to content

Commit

Permalink
fix: Wrong name for skip flag
Browse files Browse the repository at this point in the history
  • Loading branch information
ErickKramer committed May 23, 2024
1 parent 4717460 commit 2447fe8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/import.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ import cycle.`,
// Get arguments
filePath, _ := cmd.Flags().GetString("input")
recursiveFlag, _ := cmd.Flags().GetBool("recursive")
skipExisting, _ := cmd.Flags().GetBool("skip-if-existing")
skipExisting, _ := cmd.Flags().GetBool("skip")
depthRecursive, _ := cmd.Flags().GetInt("depth-recursive")
numWorkers, _ := cmd.Flags().GetInt("workers")

Expand Down

0 comments on commit 2447fe8

Please sign in to comment.