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
fix: prevent stderr warnings from contaminating bytecode comparison
forge inspect can emit compiler warnings to stderr even on success.
With 2>&1, those warnings were mixed into the bytecode string, causing
false positives when warnings differed between main and PR. Now stderr
is discarded on success (2>/dev/null) and only captured on failure for
the error message.
0 commit comments