Explorar el Código

:art: 移除工作空间时不物理删除文件

Liang Ding hace 2 años
padre
commit
ec51d24901
Se han modificado 1 ficheros con 0 adiciones y 7 borrados
  1. 0 7
      kernel/api/workspace.go

+ 0 - 7
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)
 	}