[wip] debugging OSx build

This commit is contained in:
OCram85 2019-01-15 12:17:36 +01:00
parent 6186da98a6
commit 3787a561a7
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ function Invoke-UnitTests {
try {
Write-Host '===== Preload internal private functions =====' -ForegroundColor Black -BackgroundColor Yellow
$Privates = Get-ChildItem -Path (Join-Path -Path $Env:TRAVIS_BUILD_DIR -ChildPath '/src/Private/*') -Include "*.ps1" -Recurse
$Privates = Get-ChildItem -Path (Join-Path -Path $Env:TRAVIS_BUILD_DIR -ChildPath '/src/Private/*') -Include "*.ps1" -Recurse -ErrorAction Stop
foreach ($File in $Privates) {
if (Test-Path -Path $File.FullName) {
. $File.FullName