Skip to content

Commit

Permalink
Update CreateWorkspaceCommand.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
vladimir-nikonov committed Dec 26, 2024
1 parent e0fab52 commit 719af7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clio/Command/CreateWorkspaceCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public CreateWorkspaceCommand(IWorkspace workspace, ILogger logger) {

public override int Execute(CreateWorkspaceCommandOptions options) {
try {
if (options.Environment == null) {
if (options.Environment == null && string.IsNullOrEmpty(options.Uri)) {
_workspace.Create(options.Environment);
} else {
var appCodeNotExists = options.AppCode != null ? false : true;
Expand Down

0 comments on commit 719af7b

Please sign in to comment.