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: install script silently fails on build from source
The cargo build pipe (cargo | while read) was killed by set -euo
pipefail — the while subshell exit status triggered set -e before
reaching the cp command, so the binary never got installed.
Fix: disable set -e around the pipe, use tee to preserve output,
check PIPESTATUS[0] for cargo's actual exit code, and add an
explicit binary-exists check with a clear error message.
0 commit comments