Add java check for appveyor

This commit is contained in:
JustArchi
2019-06-01 16:03:52 +02:00
parent a4c0ed4304
commit 40f677b859

View File

@@ -59,6 +59,14 @@ before_build:
dotnet --info
if ($LastExitCode -ne 0) {
throw "Last command failed."
}
java -version
if ($LastExitCode -ne 0) {
throw "Last command failed."
}