1
0
Fork 0
mirror of https://gitlab.com/futo-org/fcast.git synced 2025-06-24 21:25:23 +00:00

Fixed channel versioning

This commit is contained in:
Michael Hollister 2024-11-11 17:48:34 -06:00
parent a2004afe88
commit 2082fbf524

View file

@ -232,7 +232,7 @@ function generateArtifactName(packageJSON, platform, arch, extension) {
artifactName += '-setup';
}
if (packageJSON.channel !== 'stable') {
artifactName += `-${packageJSON.channel}-${packageJSON.channel_version}`;
artifactName += `-${packageJSON.channel}-${packageJSON.channelVersion}`;
}
artifactName += `.${extension}`
return artifactName;