From 21fefc996cb356b3f2492e18f4699bf5ce4b1f44 Mon Sep 17 00:00:00 2001 From: Andre Mainka Date: Thu, 23 May 2024 15:47:29 +0200 Subject: [PATCH] resolve review comment (#834) --- 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]"