Skip to content
This repository has been archived by the owner on Jun 21, 2023. It is now read-only.

Commit

Permalink
Merge branch 'master' into autocompletebox
Browse files Browse the repository at this point in the history
  • Loading branch information
StanleyGoldman committed Apr 10, 2019
2 parents 48bf070 + 98a843b commit f8cfdae
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public RepositoryCloneViewModel(
var canClone = Observable.CombineLatest(
repository, this.WhenAnyValue(x => x.Path),
(repo, path) => repo != null && !service.DestinationFileExists(path) &&
(!service.DestinationDirectoryExists(path)) || service.DestinationDirectoryEmpty(path));
(!service.DestinationDirectoryExists(path) || service.DestinationDirectoryEmpty(path)));

var canOpen = Observable.CombineLatest(
repository, this.WhenAnyValue(x => x.Path),
Expand Down

0 comments on commit f8cfdae

Please sign in to comment.