From f0736694589d3bc07358915b753287710ce4c50f Mon Sep 17 00:00:00 2001 From: BobSilent Date: Wed, 4 Oct 2023 15:30:29 +0200 Subject: [PATCH] provide a workaround for ruby/resolv/issues/23 --- updater/bin/run.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/updater/bin/run.sh b/updater/bin/run.sh index ffcad0073..e8421c52b 100755 --- a/updater/bin/run.sh +++ b/updater/bin/run.sh @@ -1,6 +1,11 @@ #!/bin/bash set -e +# WORKAROUND for https://github.com/ruby/resolv/issues/23, see also https://github.com/tinglesoftware/dependabot-azure-devops/pull/369 +if [ -n "$WORKAROUND_CMD" ]; then + eval "$WORKAROUND_CMD" +fi + command="$1" if [ -z "$command" ]; then echo "usage: run [update_script|fetch_files|update_files]"