Skip to content

Commit

Permalink
revert 7z to exe
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitry-shibanov committed Dec 20, 2023
1 parent 026d4a4 commit e2ed1fe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/setup/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -93245,7 +93245,7 @@ class BaseDistribution {
dataFileName = `win-${osArch}-zip`;
}
else {
dataFileName = `win-${osArch}-7z`;
dataFileName = `win-${osArch}-exe`;
}
break;
default:
Expand Down
2 changes: 1 addition & 1 deletion src/distributions/base-distribution.ts
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ export default abstract class BaseDistribution {
if (this.nodeInfo.arch === 'arm64') {
dataFileName = `win-${osArch}-zip`;
} else {
dataFileName = `win-${osArch}-7z`;
dataFileName = `win-${osArch}-exe`;
}
break;
default:
Expand Down

0 comments on commit e2ed1fe

Please sign in to comment.