Skip to content

Commit 0d3088e

Browse files
committed
needs to be this way for cross platform reasons
1 parent d74f0f2 commit 0d3088e

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

scripts/matrix_testing/CreateMatrixTestReport.ps1

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -208,11 +208,11 @@ param(
208208
$PackageName
209209
)
210210

211-
Import-Module -Name "$PSScriptRoot\..\PSCodingStandards\CodingStandards"
211+
Import-Module -Name "$PSScriptRoot/../PSCodingStandards/CodingStandards"
212212

213-
. "$PSScriptRoot\CreateSummaryReport.ps1"
214-
. "$PSScriptRoot\Get-CompilerExecutable.ps1"
215-
. "$PSScriptRoot\Config.ps1"
213+
. "$PSScriptRoot/CreateSummaryReport.ps1"
214+
. "$PSScriptRoot/Get-CompilerExecutable.ps1"
215+
. "$PSScriptRoot/Config.ps1"
216216

217217
$REPORT = @()
218218
$queriesToCheck = @()

scripts/matrix_testing/CreateSummaryReport.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
. "$PSScriptRoot\Config.ps1"
1+
. "$PSScriptRoot/Config.ps1"
22
function Create-Summary-Report {
33
param([Parameter(Mandatory)]
44
[string]

scripts/matrix_testing/Get-CompilerArgs.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
. "$PSScriptRoot\Config.ps1"
1+
. "$PSScriptRoot/Config.ps1"
22
function Get-CompilerArgs {
33
param([Parameter(Mandatory)]
44
[string]

scripts/matrix_testing/Get-CompilerExecutable.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
. "$PSScriptRoot\Config.ps1"
1+
. "$PSScriptRoot/Config.ps1"
22
function Get-CompilerExecutable {
33
param([Parameter(Mandatory)]
44
[string]

scripts/matrix_testing/NewDatabaseForRule.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
. "$PSScriptRoot\Get-CompilerExecutable.ps1"
2-
. "$PSScriptRoot\Get-CompilerArgs.ps1"
3-
. "$PSScriptRoot\GetNewDBName.ps1"
1+
. "$PSScriptRoot/Get-CompilerExecutable.ps1"
2+
. "$PSScriptRoot/Get-CompilerArgs.ps1"
3+
. "$PSScriptRoot/GetNewDBName.ps1"
44

55
function New-Database-For-Rule {
66

0 commit comments

Comments
 (0)