You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now joe generates all output to stdout, even error reports. So, if you run it like this:
joe g osX >> .gitignore
You'll end up with invalid .gitignore file. The most common practice for this is to utilise stderr stream, so that the error isn't redirected to the file and is written to the terminal instead. And nothing gets written to the file.
The text was updated successfully, but these errors were encountered:
Right now joe generates all output to stdout, even error reports. So, if you run it like this:
joe g osX >> .gitignore
You'll end up with invalid .gitignore file. The most common practice for this is to utilise
stderr
stream, so that the error isn't redirected to the file and is written to the terminal instead. And nothing gets written to the file.The text was updated successfully, but these errors were encountered: