diff --git a/select_workloads.go b/select_workloads.go index 6e2e3a5..27f17b6 100644 --- a/select_workloads.go +++ b/select_workloads.go @@ -53,14 +53,15 @@ func selectWorkloads(scanner *bufio.Scanner) ([]Workload, error) { } printSelectedWorkloadsTable(selectedWorkloads) - fmt.Print("Enter 'confirm' to confirm the workloads: ") + fmt.Print("Press 'Enter' to confirm the workloads, or input others to skip: ") if !scanner.Scan() { return nil, fmt.Errorf("input nothing") } confirmInput := scanner.Text() - if confirmInput != "confirm" { + if confirmInput != "" { + fmt.Println("You have skipped the workloads.") return nil, fmt.Errorf("confirm failed") }