We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 82edfcf commit f476aa4Copy full SHA for f476aa4
script/ci/download.js
@@ -10,7 +10,7 @@ async function download() {
10
throw new Error(`Version mismatch (TRAVIS_TAG=${process.env.TRAVIS_TAG}, version=${version}`)
11
}
12
13
- const [, user, repo] = url.match(/\/([a-z0-9_-]+)\/([a-z0-9_-]+)\.git$/i)
+ const [, user, repo] = url.match(/\/([a-z0-9_.-]+)\/([a-z0-9_.-]+)\.git$/i)
14
15
const res = await fetch(`https://api.github.com/repos/${user}/${repo}/releases/tags/v${version}`)
16
if (!res.ok) {
0 commit comments