Skip to content

Commit

Permalink
Merge pull request #366 from Sitecore/develop
Browse files Browse the repository at this point in the history
Fix #362 in Master
  • Loading branch information
AndreyFilchenkov authored Feb 6, 2020
2 parents 0599e3c + 910cd91 commit a651e10
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Sitecore Instance Manager (SIM 1.5)
# Sitecore Instance Manager (SIM 1.6)

**SIM 1.5 is an open source tool** for managing the local park of Sitecore instances. You can install, locate, maintain, reinstall or delete Sitecore products. It has API and plugin engine so you can extend it for any your need.
**SIM 1.6 is an open source tool** for managing the local park of Sitecore instances. You can install, locate, maintain, reinstall or delete Sitecore products. It has API and plugin engine so you can extend it for any your need.

### [Download SIM 1.5](http://dl.sitecore.net/updater/sim) as a ClickOnce app
### [Download SIM 1.6](http://dl.sitecore.net/updater/sim/v2) as a ClickOnce app

### Resources

Expand Down
8 changes: 8 additions & 0 deletions src/SIM.Tool.Base/Windows/Wizard.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -500,6 +500,7 @@ private void FinishUnsafe([NotNull] string message, bool allDone)

if (allDone)
{
WizardPipeline.AfterLastStep?.Execute(this.WizardArgs);
AddFinishActions(WizardPipeline._FinishActions);

if (WizardPipeline._FinishActionHives != null)
Expand Down Expand Up @@ -648,6 +649,13 @@ private void InitializeStep(int? i = null)
{
pipelineName = _ProcessorArgs.PipelineName;
}

if (!PipelineManager.Definitions.ContainsKey(WizardPipeline.Name))
{
Finish("Done.", true);

return;
}

PipelineManager.StartPipeline(pipelineName, _ProcessorArgs, this);
backButton.Visibility = Visibility.Hidden;
Expand Down

0 comments on commit a651e10

Please sign in to comment.