소스 검색

CI: Fix malformed Logger script import in Powershell script

PatTheMav 3 년 전
부모
커밋
07ef03afe2
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      .github/scripts/utils.pwsh/Invoke-External.ps1

+ 1 - 1
.github/scripts/utils.pwsh/Invoke-External.ps1

@@ -14,7 +14,7 @@ function Invoke-External {
     }
 
     if ( ! ( Test-Path function:Log-Information ) ) {
-        . $PSScriptRoot/Utils-Logger.ps1
+        . $PSScriptRoot/Logger.ps1
     }
 
     $Command = $args[0]