Skip to content

Commit 5231efd

Browse files
committed
fix issue with Windows tests failing due to unavailable downloads by changing 7-Zip version to 16.04 in windowsOtherPlatform config (installer.mjs)
1 parent 88aa29a commit 5231efd

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

installer.mjs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,19 +41,19 @@ const windowsPlatform = {
4141
};
4242

4343
const windowsOtherPlatform = {
44-
source: join(cwd, '7z1701.exe'),
44+
source: join(cwd, '7z1604.exe'),
4545
destination: join(cwd, 'other32'),
46-
url: 'https://d.7-zip.org/a/',
47-
filename: '7z1701.exe',
48-
extraName: '7z1701-extra.7z',
46+
url: 'https://www.7-zip.org/a/',
47+
filename: '7z1604.exe',
48+
extraName: '7z1604-extra.7z',
4949
extractFolder: '',
5050
appLocation: '',
5151
binaryFiles: ['7z.exe', '7z.dll', '7z.sfx', '7zCon.sfx'],
5252
binaryDestinationDir: join(__dirname, 'binaries', 'win32', 'other32'),
5353
sfxModules: ['7za.dll', '7za.exe', '7zxa.dll'],
5454
platform: 'win32',
5555
binary: '7z.exe',
56-
extraSourceFile: join(cwd, 'other32', '7z1701-extra.7z'),
56+
extraSourceFile: join(cwd, 'win32', '7z1604-extra.7z'),
5757
};
5858

5959
const linuxPlatform = {

0 commit comments

Comments
 (0)