diff --git a/routers/repo/cloudbrain.go b/routers/repo/cloudbrain.go index 8a7ab7a03..cd098d8c3 100755 --- a/routers/repo/cloudbrain.go +++ b/routers/repo/cloudbrain.go @@ -1689,11 +1689,7 @@ func uploadCodeToMinio(codePath, jobName, parentDir string) error { } func mkModelPath(modelPath string) error { - return mkPathAndReadMeFile(modelPath, "You can put the model file into this directory and download it by the web page.") -} - -func mkResultPath(resultPath string) error { - return mkPathAndReadMeFile(resultPath, "You can put the result file into this directory and download it by the web page.") + return mkPathAndReadMeFile(modelPath, "You can put the files into this directory and download the files by the web page.") } func mkPathAndReadMeFile(path string, text string) error {