diff options
| author | Dan Engelbrecht <[email protected]> | 2025-11-03 18:49:35 +0100 |
|---|---|---|
| committer | GitHub Enterprise <[email protected]> | 2025-11-03 18:49:35 +0100 |
| commit | 5b2f497c402e8f424c2c1517f89311cc0055d2cb (patch) | |
| tree | e1ec4c8755e05be4c14d74a00a87bb3916b1021f /src | |
| parent | allow --zen-cache-host option when using builds filestore (for testing) (#627) (diff) | |
| download | zen-5b2f497c402e8f424c2c1517f89311cc0055d2cb.tar.xz zen-5b2f497c402e8f424c2c1517f89311cc0055d2cb.zip | |
missing return statement in zen workspace create command (#628)
Diffstat (limited to 'src')
| -rw-r--r-- | src/zen/cmds/workspaces_cmd.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
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) |