aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Engelbrecht <[email protected]>2025-11-03 18:49:35 +0100
committerGitHub Enterprise <[email protected]>2025-11-03 18:49:35 +0100
commit5b2f497c402e8f424c2c1517f89311cc0055d2cb (patch)
treee1ec4c8755e05be4c14d74a00a87bb3916b1021f
parentallow --zen-cache-host option when using builds filestore (for testing) (#627) (diff)
downloadzen-5b2f497c402e8f424c2c1517f89311cc0055d2cb.tar.xz
zen-5b2f497c402e8f424c2c1517f89311cc0055d2cb.zip
missing return statement in zen workspace create command (#628)
-rw-r--r--CHANGELOG.md2
-rw-r--r--src/zen/cmds/workspaces_cmd.cpp1
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)