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.
1 parent fad2370 commit 9bca8f9Copy full SHA for 9bca8f9
index.js
@@ -51,10 +51,10 @@ function determineVersion() {
51
}
52
const result = cp.execSync(`curl --silent --location "https://api.github.com/repos/RoryQ/checkmate/releases/latest" | jq -r ".. .tag_name? // empty"`)
53
let ver = result.toString().trim();
54
- // fallback to v1.0.0
+ // fallback to v1.0.4
55
if (ver === "") {
56
- logDebug("No version found, falling back to v1.0.0")
57
- ver = "v1.0.0"
+ logDebug("No version found, falling back to v1.0.4")
+ ver = "v1.0.4"
58
59
return ver
60
0 commit comments