Skip to content

Commit

Permalink
GH-21: Dynamically download the latest NSIS-negrutiu
Browse files Browse the repository at this point in the history
  • Loading branch information
negrutiu committed Jun 9, 2024
1 parent 29e2fc0 commit 6353b0e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -148,8 +148,9 @@ jobs:
with request.urlopen(asset['browser_download_url']) as http:
with open(asset['name'], 'wb') as fout:
fout.write(http.read())
print('install ' + asset['name'] + ' ...')
subprocess.Popen([asset['name'], '/S']).wait()
print('install ' + asset['name'] + ' ...')
subprocess.Popen([asset['name'], '/S']).wait()
exit()
- name: Build NSIS example (x86-unicode)
run: makensis.exe /V4 /DPLUGIN_DIR=..\..\Plugins\x86-unicode artifacts\Examples\NScurl\NScurl-Test.nsi
Expand Down

0 comments on commit 6353b0e

Please sign in to comment.