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
echo"Unable to locate RabbitRs extension (looked for ${debug_candidate} and ${release_candidate}). Run 'cargo build' first.">&2
147
+
# Look for CI build artefacts (target/ci/<job>/release).
148
+
local ci_root="$root/target/ci"
149
+
if [[ -d"$ci_root" ]];then
150
+
while IFS= read -r -d '' candidate;do
151
+
if [[ -f"$candidate" ]];then
152
+
echo"$candidate"
153
+
return 0
154
+
fi
155
+
done<<(find "$ci_root" -maxdepth 3 -type f -name "librabbit_rs.${ext}" -print0)
156
+
fi
157
+
158
+
echo"Unable to locate RabbitRs extension (looked for ${debug_candidate}, ${release_candidate}, or ${root}/target/ci/**/librabbit_rs.${ext}). Run 'cargo build' first.">&2
0 commit comments