mirror of
https://github.com/actions/runner-images.git
synced 2025-12-20 06:35:47 +00:00
fix Julia destination folder
This commit is contained in:
@@ -3,4 +3,4 @@
|
||||
## Desc: Install Julia
|
||||
################################################################################
|
||||
|
||||
choco install julia -y --ia "/D=C:\Julia"
|
||||
choco install julia -y --ia "/DIR=C:\Julia"
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
################################################################################
|
||||
|
||||
# Verify that julia.exe is on the path
|
||||
if(Get-Command -Name 'julia')
|
||||
if((Get-Command -Name 'julia') -and (Test-Path -Path 'C:\Julia'))
|
||||
{
|
||||
Write-Host "$(julia --version) is on the path."
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user