diff options
| author | Bob Arnson <bob@firegiant.com> | 2019-12-11 21:52:38 -0500 |
|---|---|---|
| committer | Bob Arnson <bob@firegiant.com> | 2019-12-11 21:57:08 -0500 |
| commit | c53d0d1cc57ce3ed1450adb2c469e2b747584159 (patch) | |
| tree | eddf0d1145c0abca3bafc0ca317d27ad4110b079 /src/WixToolset.Core.Native | |
| parent | 54ade276db9bd437375a57bddc9eb88a21a6ea7a (diff) | |
| download | wix-c53d0d1cc57ce3ed1450adb2c469e2b747584159.tar.gz wix-c53d0d1cc57ce3ed1450adb2c469e2b747584159.tar.bz2 wix-c53d0d1cc57ce3ed1450adb2c469e2b747584159.zip | |
Exclude null output from report of extracted files.
Diffstat (limited to 'src/WixToolset.Core.Native')
| -rw-r--r-- | src/WixToolset.Core.Native/Cabinet.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/WixToolset.Core.Native/Cabinet.cs b/src/WixToolset.Core.Native/Cabinet.cs index 74ab7809..2d624658 100644 --- a/src/WixToolset.Core.Native/Cabinet.cs +++ b/src/WixToolset.Core.Native/Cabinet.cs | |||
| @@ -108,7 +108,7 @@ namespace WixToolset.Core.Native | |||
| 108 | } | 108 | } |
| 109 | 109 | ||
| 110 | var wixnative = new WixNativeExe("extractcab", this.Path, outputFolder); | 110 | var wixnative = new WixNativeExe("extractcab", this.Path, outputFolder); |
| 111 | return wixnative.Run(); | 111 | return wixnative.Run().Where(output => !String.IsNullOrWhiteSpace(output)); |
| 112 | } | 112 | } |
| 113 | 113 | ||
| 114 | #if TOOD_ERROR_HANDLING | 114 | #if TOOD_ERROR_HANDLING |
