Skip to content

Commit 9de8d73

Browse files
cometkimcknitt
andcommitted
Update scripts/prebuilt.js
Co-authored-by: Christoph Knittel <[email protected]>
1 parent f11159a commit 9de8d73

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

scripts/prebuilt.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ assert.ok(bsVersionMatch, "Failed to parse the compiler version file");
2929
const bsVersion = semver.parse(bsVersionMatch.version);
3030
assert.ok(bsVersion, "Failed to parse the compiler version file");
3131

32-
const pakageVersion = semver.parse(packageJson.version);
33-
assert.ok(pakageVersion, "Failed to parse the version of the package.json");
32+
const packageVersion = semver.parse(packageJson.version);
33+
assert.ok(packageVersion, "Failed to parse the version of the package.json");
3434

3535
assert.ok(
36-
verifyVersion(bsVersion, pakageVersion),
36+
verifyVersion(bsVersion, packageVersion),
3737
`Bump the compiler version in ${compilerVersionFile}`,
3838
);

0 commit comments

Comments
 (0)