From fb6eb3ab72f1e8c1ef92463156fc3f7799f98372 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Malte=20J=C3=BCrgens?= Date: Sun, 31 Jul 2022 18:11:35 +0200 Subject: [PATCH] fix nsProcess issue --- mk.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mk.py b/mk.py index c865a02..8953648 100644 --- a/mk.py +++ b/mk.py @@ -164,13 +164,13 @@ def artifacts(): # With that out of the way, we need to create the main nsis setup. os.chdir('work') exec("mkdir x86-ansi") - exec("wget -q -O ./x86-ansi/nsProcess.dll https://shorsh.de/upload/we7v/nsProcess.dll") + exec("wget -q -O ./x86-ansi/nsProcess.dll https://shorsh.de/upload/2y9p/nsProcess.dll") exec("wget -q -O ./vc_redist.x64.exe https://aka.ms/vs/17/release/vc_redist.x64.exe") setupname = 'librewolf-{}.en-US.win64-setup.exe'.format(full_version) exec('sed \"s/pkg_version/{}/g\" < ../assets/setup.nsi > tmp.nsi'.format(full_version)) exec('cp -v ../assets/librewolf.ico .') exec('cp -v ../assets/banner.bmp .') - exec('makensis-3.01.exe -V1 tmp.nsi') + exec('makensis -V1 tmp.nsi') exec('rm -rf tmp.nsi librewolf.ico banner.bmp x86-ansi') exec("mv {} ..".format(setupname)) os.chdir('..')