File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -375,7 +375,7 @@ $jobRows = $queriesToCheck | ForEach-Object -ThrottleLimit $NumThreads -Parallel
375375 $qlRefFile = Join-Path $rulePath " $CurrentQueryName .qlref"
376376 }
377377
378- Write-Host " codeql test run $qlRefFile --search-path ../../../../../../ --dataset=`" $datasetRelPath `" "
378+ Write-Host " codeql test run $qlRefFile --search-path . --dataset=`" $datasetRelPath `" "
379379
380380 $stdOut = Join-Path ([System.IO.Path ]::GetTempPath()) ([System.Guid ]::NewGuid())
381381 $stdErr = Join-Path ([System.IO.Path ]::GetTempPath()) ([System.Guid ]::NewGuid())
@@ -384,7 +384,7 @@ $jobRows = $queriesToCheck | ForEach-Object -ThrottleLimit $NumThreads -Parallel
384384 Write-Host " Standard Out Buffered to: $stdOut "
385385 Write-Host " Standard Error Buffered to: $stdErr "
386386
387- $procDetails = Start-Process - FilePath " codeql" - PassThru - NoNewWindow - Wait - ArgumentList " test run $qlRefFile --search-path ../../../../ --dataset=`" $datasetRelPath `" " - RedirectStandardOutput $stdOut - RedirectStandardError $stdErr
387+ $procDetails = Start-Process - FilePath " codeql" - PassThru - NoNewWindow - Wait - ArgumentList " test run $qlRefFile --search-path . --dataset=`" $datasetRelPath `" " - RedirectStandardOutput $stdOut - RedirectStandardError $stdErr
388388
389389 if (-Not $procDetails.ExitCode -eq 0 ) {
390390
You can’t perform that action at this time.
0 commit comments