File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Filter options
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
375
375
$qlRefFile = Join-Path $rulePath " $CurrentQueryName .qlref"
376
376
}
377
377
378
- Write-Host " codeql test run $qlRefFile --search-path ../../../../../../ --dataset=`" $datasetRelPath `" "
378
+ Write-Host " codeql test run $qlRefFile --search-path . --dataset=`" $datasetRelPath `" "
379
379
380
380
$stdOut = Join-Path ([System.IO.Path ]::GetTempPath()) ([System.Guid ]::NewGuid())
381
381
$stdErr = Join-Path ([System.IO.Path ]::GetTempPath()) ([System.Guid ]::NewGuid())
@@ -384,7 +384,7 @@ $jobRows = $queriesToCheck | ForEach-Object -ThrottleLimit $NumThreads -Parallel
384
384
Write-Host " Standard Out Buffered to: $stdOut "
385
385
Write-Host " Standard Error Buffered to: $stdErr "
386
386
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
388
388
389
389
if (-Not $procDetails.ExitCode -eq 0 ) {
390
390
You can’t perform that action at this time.
0 commit comments