diff --git a/kernel/api/workspace.go b/kernel/api/workspace.go index 16082bf4f..8c98b41c3 100644 --- a/kernel/api/workspace.go +++ b/kernel/api/workspace.go @@ -106,13 +106,6 @@ func removeWorkspaceDir(c *gin.Context) { return } - if err = os.RemoveAll(path); nil != err { - msg := fmt.Sprintf("remove workspace dir [%s] failed: %s", path, err) - ret.Code = -1 - ret.Msg = msg - return - } - if util.WorkspaceDir == path { os.Exit(util.ExitCodeOk) }