11#
22# manage.ps1 - manage the environment for interactively testing JOSM and the
3- # JOSM scripting plugin on windows
3+ # JOSM scripting plugin on Windows
44#
55# For usage information, run
66# .\manage.ps1 help
1212
1313# display messages emitted by Write-Information
1414$InformationPreference = ' Continue'
15- # don 't display a progress bar during Invoke-WebRequest => trenmendously faster downloads
15+ # Don 't display a progress bar during Invoke-WebRequest => tremendously faster downloads
1616$ProgressPreference = ' SilentlyContinue'
1717
1818function Usage () {
@@ -24,13 +24,13 @@ Usage: manage.ps1 action <args>
2424 download-josm latest|tested|<version>
2525 download a JOSM version
2626 download-jdk jdk11|jdk17
27- downloads a portable OpenJDK and installs it in the current
28- directory
27+ downloads a portable OpenJDK and installs it in the current directory
2928 download-graalvm jdk11|jdk17
30- downloads a GraalVM for windows and installs it in the current
31- directory
29+ downloads a GraalVM for Windows and installs it in the current directory
30+ download-graaljs
31+ downloads a GraalJS for Windows and installs it in the current directory
3232 clean-jars
33- delete the downloaded josm versions
33+ delete the downloaded JOSM versions
3434 create-josm-home
3535 creates the JOSM home directory
3636 delete-josm-home
@@ -121,7 +121,7 @@ class JosmHome {
121121 }
122122
123123 static [void ] installLocalScriptingJar() {
124- # the directory where the scripting.jar is locally built
124+ # The directory where the scripting.jar is locally built
125125 $distDir = $ (Join-Path $ (Get-Location ) - ChildPath " ..\..\build\dist" )
126126 $jarFile = $ (Join-Path $distDir - ChildPath " scripting.jar" )
127127 if (! (Test-Path $jarFile )) {
0 commit comments