fix Julia destination folder

This commit is contained in:
Aleksandr Chebotov
2020-04-15 10:24:45 +03:00
parent bd3709460b
commit cf559641b4
2 changed files with 2 additions and 2 deletions

View File

@@ -3,4 +3,4 @@
## Desc: Install Julia ## Desc: Install Julia
################################################################################ ################################################################################
choco install julia -y --ia "/D=C:\Julia" choco install julia -y --ia "/DIR=C:\Julia"

View File

@@ -4,7 +4,7 @@
################################################################################ ################################################################################
# Verify that julia.exe is on the path # 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." Write-Host "$(julia --version) is on the path."
} }