This means eask analyze does not play nicely in shell scripts.
Specifically, I want to do
eask analyze | grep "Warning"
Some commands will separate output and error per #123
> eask files
Unmatched dependency 'emacs'; add (emacs "VERSION") to package-file or consider removing it
# ...etc
/some/file/here
(Total of 1 item listed)
vs
> eask files 2>/dev/null
/some/file/here
This means
eask analyzedoes not play nicely in shell scripts.Specifically, I want to do
Some commands will separate output and error per #123
vs