gradle settings

This commit is contained in:
Gregor Lohaus
2026-05-28 22:18:59 +02:00
parent d14fa5c1cb
commit a1717438e4
2 changed files with 10 additions and 2 deletions

View File

@@ -215,9 +215,9 @@
runHook preInstall
mkdir -p "$out/bin"
binary="$(find build/gluonfx -type f -perm -0100 -name jprototerm | head -n1)"
binary="$(find build/gluonfx -path '*/gvm/*' -prune -o -type f -perm -0100 -print | head -n1)"
if [ -z "$binary" ]; then
echo "Could not find native jprototerm binary under build/gluonfx" >&2
echo "Could not find native executable under build/gluonfx" >&2
find build/gluonfx -type f -perm -0100 >&2 || true
exit 1
fi