diff options
author | crupest <crupest@outlook.com> | 2018-11-05 23:31:47 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2018-11-05 23:31:47 +0800 |
commit | bfdc5da41b9ab8b3f150a619c7893270dc8ccc7f (patch) | |
tree | 740db3406e532e39925054dd6bfe03c44453ff51 | |
parent | a0e035b18ca81d23d5744a38ff4a9c8b111ecebb (diff) | |
download | cru-bfdc5da41b9ab8b3f150a619c7893270dc8ccc7f.tar.gz cru-bfdc5da41b9ab8b3f150a619c7893270dc8ccc7f.tar.bz2 cru-bfdc5da41b9ab8b3f150a619c7893270dc8ccc7f.zip |
Remove unused scripts.
-rw-r--r-- | script/install_packages.ps1 | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/script/install_packages.ps1 b/script/install_packages.ps1 deleted file mode 100644 index 57109e6d..00000000 --- a/script/install_packages.ps1 +++ /dev/null @@ -1,21 +0,0 @@ -function CheckLastExitCode -{ - if ($LASTEXITCODE -ne 0) - { - exit $LASTEXITCODE - } -} - -git clone https://github.com/Microsoft/vcpkg.git --depth=1 -& CheckLastExitCode - -cd vcpkg - -& .\bootstrap-vcpkg.bat -& CheckLastExitCode - -.\vcpkg.exe install folly:x64-windows fmt:x64-windows -& CheckLastExitCode - -.\vcpkg.exe integrate install -& CheckLastExitCode |