Skip to content

Commit

Permalink
fix atlassian#89 in upsteram
Browse files Browse the repository at this point in the history
  • Loading branch information
TomaterID committed Oct 11, 2021
1 parent 3c12a8b commit 23afacf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/files/utils/win32.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export const generateWin32ReleasesStructure = async ({
for (const version of versions.sort((a, b) => semver.compare(a.name, b.name))) {
for (const file of version.files) {
if (file.fileName.endsWith('-full.nupkg') || file.fileName.endsWith('-delta.nupkg')) {
if ( arch === file.arch ) {
if ( arch === file.arch && file.sha1 ) {
const fileSize = await store.getFileSize(positioner.getWindowsKey(app, channel, version, file));
const absoluteUrl = `${await store.getPublicBaseUrl()}/${root}/${file.fileName}`;
releases.push(
Expand Down

0 comments on commit 23afacf

Please sign in to comment.