ofek / userpath

Cross-platform tool for adding locations to the user PATH, no elevated privileges required!
MIT License
151 stars 20 forks source link

use stderr for error messages #9

Closed AlJohri closed 4 years ago

AlJohri commented 4 years ago

please print to stderr not stdout for error messages

AlJohri commented 4 years ago

right now in the homebrew test, I'm running:

userpath append --shell bash --home "temphome" /randompath 1>/dev/null 2>&1

instead, ideally, i'd run:

userpath append --shell bash --home "temphome" /randompath 2>/dev/null

thanks!