We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 15c6cc4 + 4ea47ac commit 7c08465Copy full SHA for 7c08465
.github/workflows/scheduled.yml
@@ -124,10 +124,10 @@ jobs:
124
brew install curl
125
echo "HOMEBREW_FORCE_BREWED_CURL=1" >>"${GITHUB_ENV}"
126
127
- - name: Install and use Homebrew svn if needed
+ - name: Install Homebrew subversion if needed for downloading sources
128
run: |
129
- if brew ruby -e 'exit 1 if Formula[ARGV.first].deps.none? { |d| d.name == "subversion" && d.implicit? }' "$FORMULA"; then
130
- brew install svn
+ if comm -23 <(brew deps --include-implicit --direct "$FORMULA" | sort) <(brew deps --direct "$FORMULA" | sort) | grep -Fqx subversion; then
+ brew install subversion
131
fi
132
133
- name: Check formula source is not archived.
0 commit comments