mirror of
				https://github.com/go-gitea/gitea
				synced 2025-10-31 03:18:24 +00:00 
			
		
		
		
	cmd: dump: check value of skip-repository flag (#11254)
This is a boolean flag; simply checking if it's set isn't enough, we must check the value as well. Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com> Co-authored-by: techknowlogick <techknowlogick@gitea.io>
This commit is contained in:
		| @@ -99,7 +99,7 @@ func runDump(ctx *cli.Context) error { | ||||
|  | ||||
| 	zip.Verbose = ctx.Bool("verbose") | ||||
|  | ||||
| 	if ctx.IsSet("skip-repository") { | ||||
| 	if ctx.IsSet("skip-repository") && ctx.Bool("skip-repository") { | ||||
| 		log.Info("Skip dumping local repositories") | ||||
| 	} else { | ||||
| 		log.Info("Dumping local repositories...%s", setting.RepoRootPath) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user