]> git.maquefel.me Git - brevno-suite/hugo/commitdiff
Delete unused release hook script
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Tue, 25 Jun 2024 13:09:35 +0000 (15:09 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Tue, 25 Jun 2024 13:09:35 +0000 (15:09 +0200)
Closes #12378

release-hook-post-linux.sh [deleted file]

diff --git a/release-hook-post-linux.sh b/release-hook-post-linux.sh
deleted file mode 100755 (executable)
index e97e274..0000000
+++ /dev/null
@@ -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