We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 18a43b3 commit cf26babCopy full SHA for cf26bab
setup.ps1
@@ -1,7 +1,13 @@
1
-# Enable error handling
+<#
2
+ .DESCRIPTION
3
+ This script checks the development environment for required tools and configurations.
4
+#>
5
+
6
+# Enable error handling
7
Set-StrictMode -Version Latest
8
$ErrorActionPreference = 'Stop'
9
10
+# Check for required JDKs
11
function TestJvm {
12
param ($JavaHomeName, $ExpectedJavaVersion)
13
tooling/install-jdks-windows.ps1
@@ -1,4 +1,9 @@
+ This script installs the required JDKs and sets the environment variables for them.
$ProgressPreference = 'SilentlyContinue'
0 commit comments