diff options
author | Bjørn Erik Pedersen <[email protected]> | 2024-06-25 15:09:35 +0200 |
---|---|---|
committer | Bjørn Erik Pedersen <[email protected]> | 2024-06-25 15:09:35 +0200 |
commit | 1687a9a5852e83a1c52e647e92882d9e6bfc109a (patch) | |
tree | 77637421a8f4b0cc9b1a637aaadcda38668cddd6 | |
parent | 16e4662b7d3a96e9d1c0e8980fc0b0c52ed0e7e6 (diff) | |
download | hugo-1687a9a5852e83a1c52e647e92882d9e6bfc109a.tar.gz hugo-1687a9a5852e83a1c52e647e92882d9e6bfc109a.zip |
Delete unused release hook script
Closes #12378
-rwxr-xr-x | release-hook-post-linux.sh | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/release-hook-post-linux.sh b/release-hook-post-linux.sh deleted file mode 100755 index e97e274a8..000000000 --- a/release-hook-post-linux.sh +++ /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 |