This commit is contained in:
2023-11-06 10:48:03 +01:00
parent e5777e98f6
commit c10168be30

View File

@@ -10,7 +10,7 @@ function Import-ScriptsFromUrls {
Write-Host "Downloading script from $url to $localFile"
Invoke-WebRequest -Uri $url -OutFile $localFile -UseBasicParsing
Write-Host "Importing script from $localFile"
. $localFile
. $localFile -Local 1
}
}