Skip to content

Commit

Permalink
Fixed silent install issue with Wix Installers. #facepalm
Browse files Browse the repository at this point in the history
  • Loading branch information
kayone committed May 9, 2019
1 parent 67a0aa8 commit 37e71b7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/AppGet/Installers/InstallerWhisperer/WixWhisperer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ public class WixWhisperer : InstallerBase

// http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Running-Burn-driven-installer-in-quiet-mode-command-line-parameters-tp5913001p5913628.html
public override string PassiveArgs => "/passive /norestart";
public override string SilentArgs => "/quite /norestart";
public override string SilentArgs => "/quiet /norestart";
public override string LogArgs => "/l {path}";
}
}
2 changes: 1 addition & 1 deletion src/AppGet/Installers/UninstallerWhisperer/WixWhisperer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public class WixUninstaller : UninstallerBase

// http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Running-Burn-driven-installer-in-quiet-mode-command-line-parameters-tp5913001p5913628.html
public override string PassiveArgs => $"{InteractiveArgs} /passive /norestart";
public override string SilentArgs => $"{InteractiveArgs} /quite /norestart";
public override string SilentArgs => $"{InteractiveArgs} /quiet /norestart";
public override string LogArgs => "/l {path}";
}
}

0 comments on commit 37e71b7

Please sign in to comment.