Delete unused release hook script

Closes #12378
This commit is contained in:
Bjørn Erik Pedersen 2024-06-25 15:09:35 +02:00
parent 16e4662b7d
commit 1687a9a585
No known key found for this signature in database

View file

@ -1,9 +0,0 @@
#!/bin/bash
# Se https://github.com/gohugoio/hugo/issues/8955
objdump -T dist/hugo_extended_linux_linux_amd64/hugo | grep -E -q 'GLIBC_2.2[0-9]'
RESULT=$?
if [ $RESULT -eq 0 ]; then
echo "Found GLIBC_2.2x in Linux binary, this will not work in older Vercel/Netlify images.";
exit -1;
fi