소스 검색

supress some output

Armin Schrenk 1 년 전
부모
커밋
15885545b5
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      .github/workflows/win-exe.yml

+ 1 - 1
.github/workflows/win-exe.yml

@@ -163,7 +163,7 @@ jobs:
           & certutil -f -p $password -importpfx ".\certFile"
 
           # create directory to extract every jar to
-          New-Item -Path $tmpDir -ItemType Directory
+          New-Item -Path $tmpDir -ItemType Directory > $null
           # iterate over all jars
           Get-ChildItem -Path $folder -Recurse -File *.jar | ForEach-Object {
               $jar = Copy-Item $_ -Destination $tmpDir -PassThru