From 7f7224b2b11602b1e131bd769bef6e69148b02f6 Mon Sep 17 00:00:00 2001 From: BobSilent Date: Wed, 22 May 2024 22:54:43 +0200 Subject: [PATCH] resolve review comment --- updater/bin/run.sh | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/updater/bin/run.sh b/updater/bin/run.sh index ffcad007..6a8f574e 100755 --- a/updater/bin/run.sh +++ b/updater/bin/run.sh @@ -1,6 +1,13 @@ #!/bin/bash set -e +# This is a WORKAROUND for https://github.com/ruby/resolv/issues/23 +# see also https://github.com/tinglesoftware/dependabot-azure-devops/pull/369 +# see also https://github.com/tinglesoftware/dependabot-azure-devops/pull/834 +if [ -n "$WORKAROUND_CMD" ]; then + eval "$WORKAROUND_CMD" +fi + command="$1" if [ -z "$command" ]; then echo "usage: run [update_script|fetch_files|update_files]"