summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorruki <[email protected]>2019-07-11 00:41:16 +0800
committerruki <[email protected]>2019-07-10 22:07:41 +0800
commit00b963b26ee70e694fa4986bfcf0b57d8cd29312 (patch)
tree6c19c6c88aff044298c4204d287f89bbf6d1ba7e
parenta8851e6f0446177e609bb087ea2c7117e3af3030 (diff)
format ci code
-rw-r--r--.appveyor.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.appveyor.yml b/.appveyor.yml
index 63804264e..760cd6834 100644
--- a/.appveyor.yml
+++ b/.appveyor.yml
@@ -12,7 +12,7 @@ install:
# prepare tools
- ps: Push-Location C:/
- ps: (New-Item ./winenv/bin -ItemType Directory).FullName
- # NSIS
+ # nsis
- ps: Invoke-WebRequest "https://github.com/xmake-mirror/nsis/releases/download/v30b3/nsis-3.04.zip" -UseBasicParsing -OutFile ./nsis.zip
- ps: Invoke-WebRequest "https://github.com/xmake-mirror/nsis/releases/download/v30b3/nsis-3.04-strlen_8192.zip" -UseBasicParsing -OutFile ./nsis-longstr.zip
- ps: Invoke-WebRequest "https://github.com/xmake-mirror/nsis/releases/download/v30b3/UAC.zip" -UseBasicParsing -OutFile ./nsis-uac.zip
@@ -21,11 +21,11 @@ install:
- ps: Expand-Archive ./nsis-longstr.zip -DestinationPath ./nsis -Force
- ps: Expand-Archive ./nsis-uac.zip -DestinationPath ./nsis -Force
- ps: Move-Item ./nsis/UAC.nsh ./nsis/Include/
- # unzip
+ # unzip
- ps: Invoke-WebRequest "https://github.com/xmake-mirror/gnuwin32-unzip/releases/download/5.51.1/unzip-5.51-1-bin.zip" -UseBasicParsing -OutFile .\unzip.zip
- ps: Expand-Archive ./unzip.zip -DestinationPath ./unzip
- ps: Copy-Item ./unzip/bin/unzip.exe ./winenv/bin
- # curl
+ # curl
- ps: Invoke-WebRequest "https://github.com/xmake-io/xmake-win$(if ($env:platform -eq 'x64') { '64' } else { '32' })env/raw/master/bin/curl.exe" -UseBasicParsing -OutFile .\curl.exe
- ps: Invoke-WebRequest "https://raw.githubusercontent.com/xmake-io/xmake-win$(if ($env:platform -eq 'x64') { '64' } else { '32' })env/master/bin/curl-ca-bundle.crt" -UseBasicParsing -OutFile .\curl-ca-bundle.crt
- ps: Copy-Item ./curl.exe ./winenv/bin