Skip to content

Commit 4b8bced

Browse files
committed
[OCTRL-209] Address comments
1 parent 85a4c7a commit 4b8bced

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

coconut/cmd/configuration_import.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ coconut conf import <component>/<entry> <file_path>
3737
coconut conf import <component> <entry> <file_path> --new-component
3838
coconut conf import <component>/<entry> <file_path> --format=json
3939
coconut conf import <component> <entry> <file_path>.json
40-
coconut conf import <component> <entry> <file_path> -no-versioning
41-
coconut conf import <component> <entry> <file_path> -no-versioning --new-component
40+
coconut conf import <component> <entry> <file_path> --no-versioning
41+
coconut conf import <component> <entry> <file_path> --no-versioning --new-component
4242
`,
4343
Short: "Import a configuration file for the specified component and entry",
4444
Long: `The configuration import command generates a timestamp and saves
@@ -53,5 +53,5 @@ func init() {
5353
configurationCmd.AddCommand(configurationImportCmd)
5454
configurationImportCmd.Flags().BoolP("new-component", "n", false, "create a new configuration component while importing entry")
5555
configurationImportCmd.Flags().StringP("format", "f", "", "force a specific configuration file type, overriding any file extension")
56-
configurationImportCmd.Flags().Bool("no-versioning", false, "create a new configuration component without timestamp being generated as a version")
56+
configurationImportCmd.Flags().Bool("no-versioning", false, "create an unversioned configuration entry (no timestamps are stored)")
5757
}

0 commit comments

Comments
 (0)