Skip to content

Commit 9ed68ef

Browse files
committed
initialize js language after downloading GraalVM
1 parent 518fbef commit 9ed68ef

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

testing/windows/manage.ps1

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -187,6 +187,9 @@ function downloadGraalVM([string]$version) {
187187
Invoke-WebRequest -Uri $downloadUrl -OutFile $localFile
188188
Expand-Archive -Path $(Join-Path $(Get-Location) -ChildPath $localFile) -DestinationPath $(Get-Location)
189189
Remove-Item -Path $(Join-Path $(Get-Location) -ChildPath $localFile)
190+
191+
# initiallize the JavaScript language
192+
. $graalVMDirectory\bin\gu.cmd install js
190193
}
191194

192195
function downloadGraalJS([string] $version) {

0 commit comments

Comments
 (0)