diff options
| -rw-r--r-- | CHANGELOG.md | 2 | ||||
| -rw-r--r-- | src/zen/cmds/workspaces_cmd.cpp | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index c4368e9a7..43cd83056 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,5 @@ ## - +- Bugfix: Fixed ASSERT when using `zen workspace create` command - Bugfix: Fixed race condition in Latch. Sometimes the Wait() could early out before the completion event had been set - Bugfix: Fixed issue on MacOS where trace options would not stick due to `IterateCommandlineArgs` bug diff --git a/src/zen/cmds/workspaces_cmd.cpp b/src/zen/cmds/workspaces_cmd.cpp index a7be7e7c5..6e6f5d863 100644 --- a/src/zen/cmds/workspaces_cmd.cpp +++ b/src/zen/cmds/workspaces_cmd.cpp @@ -487,6 +487,7 @@ WorkspaceShareCommand::Run(const ZenCliOptions& GlobalOptions, int argc, char** { ZEN_CONSOLE("Workspace share {} already exists", m_ShareId); } + return; } if (SubOption == &m_InfoOptions) |