this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

cmd/cue/cmd: fix --dryrun flag description of import command

The '--dryrun' flag description is the same as '--force' flag and it's wrong.
Copy from `add` command's '--dryrun' flag description.

Change-Id: Ie3d77a2f2e2e45da9e513ded6636402fce276876
Reviewed-on: https://cue-review.googlesource.com/c/cue/+/3060
Reviewed-by: Marcel van Lohuizen <mpvl@google.com>

authored by

Koichi Shiraishi and committed by
Marcel van Lohuizen
cb84024b d2563c1b

+1 -1
+1 -1
cmd/cue/cmd/import.go
··· 200 200 cmd.Flags().StringP(string(flagGlob), "n", "", "glob filter for file names") 201 201 cmd.Flags().String(string(flagType), "", "only apply to files of this type") 202 202 cmd.Flags().BoolP(string(flagForce), "f", false, "force overwriting existing files") 203 - cmd.Flags().Bool(string(flagDryrun), false, "force overwriting existing files") 203 + cmd.Flags().Bool(string(flagDryrun), false, "only run simulation") 204 204 205 205 cmd.Flags().StringP(string(flagPath), "l", "", "path to include root") 206 206 cmd.Flags().Bool(string(flagList), false, "concatenate multiple objects into a list")