Skip to content

Commit

Permalink
add script descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
lucaspimentel committed Jan 28, 2025
1 parent 4144dc6 commit 48f7af5
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
8 changes: 7 additions & 1 deletion setup.ps1
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
# Enable error handling
<#
.DESCRIPTION
This script checks the development environment for required tools and configurations.
#>

# Enable error handling
Set-StrictMode -Version Latest
$ErrorActionPreference = 'Stop'

# Check for required JDKs
function TestJvm {
param ($JavaHomeName, $ExpectedJavaVersion)

Expand Down
7 changes: 6 additions & 1 deletion tooling/install-jdks-windows.ps1
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# Enable error handling
<#
.DESCRIPTION
This script installs the required JDKs and sets the environment variables for them.
#>

# Enable error handling
Set-StrictMode -Version Latest
$ErrorActionPreference = 'Stop'
$ProgressPreference = 'SilentlyContinue'
Expand Down

0 comments on commit 48f7af5

Please sign in to comment.