Skip to content

Commit

Permalink
Merge branch 'release/0.8.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
redsolo committed Jun 28, 2018
2 parents 3135db8 + 0522a29 commit 0086e92
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ solution: src/VcEngineAutomation.sln

env:
global:
- PKG_VERSION=0.8.0
- PKG_VERSION=0.8.1

script:
- ./build.sh
Expand Down
2 changes: 1 addition & 1 deletion src/VcEngineAutomation/VcEngine.cs
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ public void WaitWhileBusy(TimeSpan timeout)
private bool ShellIsBusy(TimeSpan timeout)
{
TimeSpan retryInterval = DefaultRetryInternal;
Wait.UntilResponsive(MainWindow, timeout);
Retry.WhileException(() => Wait.UntilResponsive(MainWindow), timeout, retryInterval);

if (IsShellBusyAction?.Invoke(this) ?? false) return true;

Expand Down

0 comments on commit 0086e92

Please sign in to comment.