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('..')