How to hide Android sdkmanager download progress bar? How to hide Android sdkmanager download progress bar? jenkins jenkins

How to hide Android sdkmanager download progress bar?


I ended up hiding the progress bar with grep.

sdkmanager --update | grep -v = || true


As of now the documentation lists all the arguments and there is no --silent. Pipeing it to /dev/null to silence it can be a solution.