1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Fix variable name

Signed-off-by: Sebastian Malton <sebastian@malton.name>
This commit is contained in:
Sebastian Malton 2023-02-13 11:22:21 -05:00
parent a77c76a01a
commit 86c72289a5

View File

@ -26,9 +26,9 @@ try {
const currentVersion = new SemVer(packageJson.version);
const patialVersion = `${currentVersion.major}.${currentVersion.minor}.${currentVersion.patch}`;
const partialVersion = `${currentVersion.major}.${currentVersion.minor}.${currentVersion.patch}`;
const prereleasePart = `cron.${currentHash}`;
const newVersion = `${patialVersion}-${prereleasePart}`;
const newVersion = `${partialVersion}-${prereleasePart}`;
await writeFile(
versionJsonPath,