Revert "ci/Appveyor: install diffutils via scoop"

This reverts commit 4faf30de3e.
This commit is contained in:
Jan Edmund Lazo 2020-03-07 22:37:00 -05:00
parent f8f41d088b
commit 45b8dc0c3d
No known key found for this signature in database
GPG Key ID: 64915E6E9F735B15
1 changed files with 2 additions and 3 deletions

View File

@ -36,8 +36,7 @@ $scoop = (New-Object System.Net.WebClient).DownloadString('https://get.scoop.sh'
Invoke-Expression $scoop
}
scoop install diffutils perl
diff3 --version
scoop install perl
perl --version
cpanm.bat --version
@ -81,7 +80,7 @@ if ($compiler -eq 'MINGW') {
# in MSYS2, but we cannot build inside the MSYS2 shell.
$cmakeGenerator = 'Ninja'
$cmakeGeneratorArgs = '-v'
$mingwPackages = @('ninja', 'cmake').ForEach({
$mingwPackages = @('ninja', 'cmake', 'diffutils').ForEach({
"mingw-w64-$arch-$_"
})