openfl / lime

A foundational Haxe framework for cross-platform development
https://lime.openfl.org/
MIT License
761 stars 376 forks source link

haxelib run lime setup --quiet option #1425

Closed Wesss closed 2 years ago

Wesss commented 4 years ago

haxelib features a --quiet option that can be used to suppress the downloading progress output while downloading packages. I'd like to request this option for lime setup as well. I'm using lime in some CI, and these messages are flooding the output console and lagging the client.

player-03 commented 2 years ago

I know you've probably moved on by now, but for anyone who stumbles across this question in the future, the thing to do is redirect output.

On *nix systems:

$ lime setup -y > /dev/null

On Windows:

$ lime setup -y > NUL

(Error messages will still print on *nix systems unless you add another redirection. Not sure about Windows.)