mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 08:30:25 +08:00 
			
		
		
		
	Merge pull request #251 from niphor/master
RepoRootPath must be absolute path
This commit is contained in:
		@@ -182,6 +182,12 @@ func NewConfigContext() {
 | 
			
		||||
		log.Fatal("Fail to get home directory: %v", err)
 | 
			
		||||
	}
 | 
			
		||||
	RepoRootPath = Cfg.MustValue("repository", "ROOT", filepath.Join(homeDir, "gogs-repositories"))
 | 
			
		||||
	if !filepath.IsAbs(RepoRootPath) {
 | 
			
		||||
		RepoRootPath = filepath.Join(workDir, RepoRootPath)
 | 
			
		||||
	} else {
 | 
			
		||||
		RepoRootPath = filepath.Clean(RepoRootPath)
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	if err = os.MkdirAll(RepoRootPath, os.ModePerm); err != nil {
 | 
			
		||||
		log.Fatal("Fail to create repository root path(%s): %v", RepoRootPath, err)
 | 
			
		||||
	}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user