Skip to content

Commit

Permalink
provide a workaround for ruby/resolv/issues/23
Browse files Browse the repository at this point in the history
  • Loading branch information
BobSilent committed Oct 4, 2023
1 parent c541685 commit f073669
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions updater/bin/run.sh
Original file line number Diff line number Diff line change
@@ -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]"
Expand Down

0 comments on commit f073669

Please sign in to comment.