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 cd076c8 commit c6508e2Copy full SHA for c6508e2
2 files changed
.vscode/tasks.json
@@ -37,7 +37,7 @@
37
"command": "pwsh",
38
"args": [
39
"-File",
40
- "${workspaceFolder}/.github/scripts/Update-BenchmarkDocs.ps1"
+ "${workspaceFolder}/build/Update-BenchmarkDocs.ps1"
41
],
42
"problemMatcher": []
43
},
.github/scripts/Update-BenchmarkDocs.ps1 build/Update-BenchmarkDocs.ps1.github/scripts/Update-BenchmarkDocs.ps1 renamed to build/Update-BenchmarkDocs.ps1
@@ -23,8 +23,8 @@ param(
23
24
$ErrorActionPreference = 'Stop'
25
26
-# Configuration - .github/scripts -> .github -> repo root (2 levels up)
27
-$RepoRoot = Split-Path -Parent (Split-Path -Parent $PSScriptRoot)
+# Configuration - repo root (1 level up)
+$RepoRoot = Split-Path -Parent $PSScriptRoot
28
if (-not $RepoRoot -or -not (Test-Path $RepoRoot)) {
29
$RepoRoot = Get-Location
30
}
0 commit comments