Hi Ezekiel, On Thu, 17 Jul 2025, Ezekiel Newren via GitGitGadget wrote: > +if [ "$dir_git_root" != "$dir_build" ]; then > + src=$dir_rust/target/$rust_target/$libfile > + if [ ! -f $src ]; then > + echo >&2 "::error:: cannot find path of static library" > + exit 5 > + fi As I found out the hard way, this error message could be more helpful if it specified a couple of those variables that play into the failure (or all of them). Would you mind changing the error message accordingly? Thank you, Johannes