File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3939
4040 # Install linux dependencies
4141 $shellArgs = @ (
42- ' scripts/ linux/sourcepawn-dependencies.sh'
42+ ' linux/sourcepawn-dependencies.sh'
4343 )
4444 & $provisionScriptBlock
4545 }
File renamed without changes.
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ $functionTestScriptBlock = {
2222
2323" `n [sourcemod] Compile plugin via wrapper" | Write-Host
2424$cmdArgs = @ {
25- File = " $PSScriptRoot \mod\sourcemod\addons\sourcemod\scripting\plugin1.sp"
25+ File = " $PSScriptRoot \..\..\ mod\sourcemod\addons\sourcemod\scripting\plugin1.sp"
2626 Force = $true
2727}
2828$cmdArgs | Out-String - Stream | % { $_.Trim () } | ? { $_ } | Write-Verbose
@@ -31,7 +31,7 @@ $cmdArgs | Out-String -Stream | % { $_.Trim() } | ? { $_ } | Write-Verbose
3131
3232" `n [sourcemod] Compile plugin via compiler" | Write-Host
3333$cmdArgs = @ {
34- File = " $PSScriptRoot \mod\sourcemod\addons\sourcemod\scripting\plugin2.sp"
34+ File = " $PSScriptRoot \..\..\ mod\sourcemod\addons\sourcemod\scripting\plugin2.sp"
3535 Force = $true
3636 SkipWrapper = $true
3737}
@@ -49,7 +49,7 @@ $cmdArgs | Out-String -Stream | % { $_.Trim() } | ? { $_ } | Write-Verbose
4949# - Displays all the output using 'less' at the end of the compilation, thus is limited to interactive use
5050if ($env: OS ) {
5151 $cmdArgs = @ {
52- File = " $PSScriptRoot \mod\amxmodx\addons\amxmodx\scripting\plugin1.sma"
52+ File = " $PSScriptRoot \..\..\ mod\amxmodx\addons\amxmodx\scripting\plugin1.sma"
5353 Force = $true
5454 }
5555 $cmdArgs | Out-String - Stream | % { $_.Trim () } | ? { $_ } | Write-Verbose
@@ -58,7 +58,7 @@ if ($env:OS) {
5858
5959" `n [amxmodx] Compile plugin via compiler" | Write-Host
6060$cmdArgs = @ {
61- File = " $PSScriptRoot \mod\amxmodx\addons\amxmodx\scripting\plugin2.sma"
61+ File = " $PSScriptRoot \..\..\ mod\amxmodx\addons\amxmodx\scripting\plugin2.sma"
6262 Force = $true
6363 SkipWrapper = $true
6464}
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ $global:PesterDebugPreference_ShowFullErrors = $true
88try {
99 # Install test dependencies
1010 " Installing test dependencies" | Write-Host
11- & " $PSScriptRoot \Install-TestDependencies.ps1" > $null
11+ & " $PSScriptRoot \scripts\dep\ Install-TestDependencies.ps1" > $null
1212
1313 # Run unit tests
1414 " Running unit tests" | Write-Host
2121
2222 # Run integration tests
2323 " Running integration tests" | Write-Host
24- $integratedFailedCount = & " $PSScriptRoot \Run-IntegrationTests.ps1"
24+ $integratedFailedCount = & " $PSScriptRoot \scripts\integration\ Run-IntegrationTests.ps1"
2525 if ($integratedFailedCount -gt 0 ) {
2626 $testFailed = $true
2727 }
You can’t perform that action at this time.
0 commit comments