GUACAMOLE-1540: Ignore failures to find packages associated with libraries we build ourselves.

This commit is contained in:
Michael Jumper 2022-08-19 12:11:29 -07:00
parent b5addfe3da
commit 5918cc9f7c

View File

@ -37,7 +37,7 @@ while [ -n "$1" ]; do
# List the package providing that library, if any # List the package providing that library, if any
apk info -W "$LIBRARY" 2> /dev/null \ apk info -W "$LIBRARY" 2> /dev/null \
| grep 'is owned by' | grep -o '[^ ]*$' | grep 'is owned by' | grep -o '[^ ]*$' || true
done done