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

View File

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