Skip to content

Commit 4d3d3a6

Browse files
committed
fix(release): keep rpath-strip pipeline alive when grep finds nothing
1 parent e78c95e commit 4d3d3a6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/build-release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -467,7 +467,7 @@ build_for_arch() {
467467
[ -f "$binary" ] || continue
468468
otool -l "$binary" 2>/dev/null | grep "Libs/dylibs" | awk '{print $2}' | while read -r rpath; do
469469
install_name_tool -delete_rpath "$rpath" "$binary" 2>/dev/null || true
470-
done
470+
done || true
471471
done
472472

473473
# Strip Sparkle helper binaries

0 commit comments

Comments
 (0)