Skip to content

Commit

Permalink
Don't exit on 'k6 cloud -q' just don't print progress
Browse files Browse the repository at this point in the history
fixes #1371
  • Loading branch information
mstoykov committed Oct 30, 2020
1 parent aeb884a commit ff337ea
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions cmd/cloud.go
Expand Up @@ -236,11 +236,6 @@ This will execute the test on the k6 cloud service. Use "k6 login cloud" to auth
progressBarWG.Done()
}()

// The quiet option hides the progress bar and disallow aborting the test
if quiet {
return nil
}

// Trap Interrupts, SIGINTs and SIGTERMs.
sigC := make(chan os.Signal, 1)
signal.Notify(sigC, os.Interrupt, syscall.SIGINT, syscall.SIGTERM)
Expand Down

0 comments on commit ff337ea

Please sign in to comment.