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
I've been following the contributors' guide and I couldn't get past make lint command as it was giving an error on a vanilla source code. One of the issues is with testing the output of the likes of golint where it is expected to be empty. However echo -n "$OUT" printed out -n instead of nothing, which was then considered as an error condition.
I've tested a substitute command echo "$OUT\c" which does the same thing and works both on macOS and Linux. I will send a PR.
The text was updated successfully, but these errors were encountered:
I've been following the contributors' guide and I couldn't get past
make lint
command as it was giving an error on a vanilla source code. One of the issues is with testing the output of the likes ofgolint
where it is expected to be empty. Howeverecho -n "$OUT"
printed out-n
instead of nothing, which was then considered as an error condition.I've tested a substitute command
echo "$OUT\c"
which does the same thing and works both on macOS and Linux. I will send a PR.The text was updated successfully, but these errors were encountered: