We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15714c2 commit a968661Copy full SHA for a968661
1 file changed
scripts/ingest.ps1
@@ -28,9 +28,9 @@ if ([string]::IsNullOrWhiteSpace($SCRIPT_PATH)) {
28
$SCRIPT_PATH = $MyInvocation.MyCommand.Path
29
}
30
if ([string]::IsNullOrWhiteSpace($SCRIPT_PATH)) {
31
- $SCRIPT_PATH = ".\ingest.ps1"
+ $SCRIPT_PATH = Join-Path $PSScriptRoot "ingest.ps1"
32
33
-$SCRIPT_CMD = "powershell -NoProfile -ExecutionPolicy Bypass -File `"$SCRIPT_PATH`""
+$SCRIPT_CMD = "powershell -NoProfile -ExecutionPolicy Bypass -File '$SCRIPT_PATH'"
34
35
$SUPPORTED_ARCH = @("AMD64", "ARM64")
36
0 commit comments