Skip to content

Commit

Permalink
Fix regular expression for autoconf download
Browse files Browse the repository at this point in the history
  • Loading branch information
morganwillcock committed Dec 4, 2021
1 parent 0da2a1a commit 5161c4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
baseurl=https://deb.debian.org/debian/pool/main/a/autoconf
filename=$(curl -fLSs $baseurl | \
grep --perl-regexp \
--only-matching '(?<=href=")autoconf_2.71-.+_all.deb(?=")')
--only-matching '(?<=href=")autoconf_2\.71-.+_all\.deb(?=")')
(cd "${{ runner.temp }}" && curl -fLOJ "$baseurl/$filename")
sudo dpkg -i "${{ runner.temp }}/$filename"
;;
Expand Down

0 comments on commit 5161c4b

Please sign in to comment.