diff options
| author | ruki <[email protected]> | 2019-06-09 22:49:57 +0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2019-06-09 22:49:57 +0800 |
| commit | f66b6be0910eaeb649e4718eff278b716080257e (patch) | |
| tree | e6677fccc99f5339484a9e7578cfcb0bf150e444 | |
| parent | 3a1db57753528053ab1c457675257efe7250bc87 (diff) | |
| parent | a483b7a9f28c232d66a5c7596926e5c31af865e2 (diff) | |
Merge pull request #447 from OpportunityLiu/ci-fix
fix nsis version
| -rw-r--r-- | .appveyor.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.appveyor.yml b/.appveyor.yml index b4bc90e4f..8cb95ae45 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -14,8 +14,10 @@ install: - ps: New-Item ./winenv/bin -ItemType Directory # NSIS - ps: Invoke-WebRequest "https://svwh.dl.sourceforge.net/project/nsis/NSIS 3/3.04/nsis-3.04.zip" -UseBasicParsing -OutFile ./nsis.zip + - ps: Invoke-WebRequest "https://svwh.dl.sourceforge.net/project/nsis/NSIS 3/3.04/nsis-3.04-strlen_8192.zip" -UseBasicParsing -OutFile ./nsis-longstr.zip - ps: Expand-Archive ./nsis.zip -DestinationPath ./nsis - ps: Move-Item ./nsis/*/* ./nsis + - ps: Expand-Archive ./nsis-longstr.zip -DestinationPath ./nsis -Force # unzip - ps: Invoke-WebRequest "https://svwh.dl.sourceforge.net/project/gnuwin32/unzip/5.51-1/unzip-5.51-1-bin.zip" -UseBasicParsing -OutFile .\unzip.zip - ps: Expand-Archive ./unzip.zip -DestinationPath ./unzip |
