Compare commits
2 Commits
f992fd6a6d
...
3a692e4a34
Author | SHA1 | Date |
---|---|---|
|
3a692e4a34 | |
|
f8bf3ed25e |
|
@ -83,7 +83,10 @@ jobs:
|
||||||
throw "no artifacts found"
|
throw "no artifacts found"
|
||||||
}
|
}
|
||||||
if (urlList.length != 10) {
|
if (urlList.length != 10) {
|
||||||
throw "there should be exactly 10 artifacts"
|
// found too many artifacts
|
||||||
|
// list them and throw
|
||||||
|
console.log(urlList);
|
||||||
|
throw "there should be exactly 10 artifacts, found " + urlList.length + " artifacts"
|
||||||
}
|
}
|
||||||
return urlList.join(",")
|
return urlList.join(",")
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in New Issue