summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--cmd/platform/import.go10
1 files changed, 5 insertions, 5 deletions
diff --git a/cmd/platform/import.go b/cmd/platform/import.go
index 76ed1fb81..2f995aad2 100644
--- a/cmd/platform/import.go
+++ b/cmd/platform/import.go
@@ -106,12 +106,12 @@ func bulkImportCmdF(cmd *cobra.Command, args []string) error {
if lineNumber != 0 {
CommandPrettyPrintln(fmt.Sprintf("Error occurred on data file line %v", lineNumber))
}
- }
-
- if apply {
- CommandPrettyPrintln("Finished Bulk Import.")
} else {
- CommandPrettyPrintln("Validation complete. You can now perform the import by rerunning this command with the --apply flag.")
+ if apply {
+ CommandPrettyPrintln("Finished Bulk Import.")
+ } else {
+ CommandPrettyPrintln("Validation complete. You can now perform the import by rerunning this command with the --apply flag.")
+ }
}
return nil