Skip to content

Commit

Permalink
Merge pull request #130 from vosen/master
Browse files Browse the repository at this point in the history
More polish for installation and ootb experience
  • Loading branch information
vosen committed May 13, 2015
2 parents 1206f53 + 7c07456 commit eff5fc3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion VisualRust.Build/Rustc.cs
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ private bool ExecuteInner()
string rustBinPath = VisualRust.Shared.Environment.FindInstallPath(VisualRust.Shared.Environment.DefaultTarget);
if(rustBinPath == null)
{
Log.LogError("No Rust compiler installed.");
Log.LogError("No Rust installation detected. You can download official Rust installer from rust-lang.org/install.");
return false;
}
StringBuilder sb = new StringBuilder();
Expand Down
4 changes: 4 additions & 0 deletions VisualRust.Setup/vsx2013.wxs
Original file line number Diff line number Diff line change
Expand Up @@ -68,5 +68,9 @@
<Custom Action="CA_Remove_Ancient_Version" Before="CA_VS2013Setup"><![CDATA[VS2013DEVENV AND &Ftr_VisualRust=3]]></Custom>
<Custom Action="CA_VS2013Setup" Before="InstallFinalize"><![CDATA[(VS2013DEVENV AND &Ftr_VisualRust=3) OR ((NOT UPGRADINGPRODUCTCODE) AND (&Ftr_VisualRust=2) AND (!Ftr_VisualRust=3))]]></Custom>
</InstallExecuteSequence>
<UI>
<ProgressText Action="CA_Remove_Ancient_Version">Removing ancient version of Visual Rust</ProgressText>
<ProgressText Action="CA_VS2013Setup">Configuring Visual Studio 2013 (this might take a few minutes)</ProgressText>
</UI>
</Fragment>
</Wix>

0 comments on commit eff5fc3

Please sign in to comment.