mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 11:35:03 +01:00 
			
		
		
		
	Fixed directory permissions for the zip download router
If the archives/ directory is created with 0655, it results in a permission error.
This commit is contained in:
		
							parent
							
								
									2657f88d9a
								
							
						
					
					
						commit
						6fe43eb8d4
					
				| @ -58,7 +58,7 @@ func ZipDownload(ctx *middleware.Context, params martini.Params) { | ||||
| 	commitId := ctx.Repo.CommitId | ||||
| 	archivesPath := filepath.Join(ctx.Repo.GitRepo.Path, "archives/zip") | ||||
| 	if !com.IsDir(archivesPath) { | ||||
| 		if err := os.MkdirAll(archivesPath, 0655); err != nil { | ||||
| 		if err := os.MkdirAll(archivesPath, 0755); err != nil { | ||||
| 			ctx.Handle(500, "ZipDownload -> os.Mkdir(archivesPath)", err) | ||||
| 			return | ||||
| 		} | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user