mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 08:30:25 +08:00 
			
		
		
		
	Fix cli command restore-repo: "units" should be splitted to string slice, to match the old behavior and match the dump-repo's behavior (#20183)
This commit is contained in:
		@@ -590,7 +590,7 @@ func updateOptionsUnits(opts *base.MigrateOptions, units []string) error {
 | 
			
		||||
		opts.ReleaseAssets = true
 | 
			
		||||
	} else {
 | 
			
		||||
		for _, unit := range units {
 | 
			
		||||
			switch strings.ToLower(unit) {
 | 
			
		||||
			switch strings.ToLower(strings.TrimSpace(unit)) {
 | 
			
		||||
			case "":
 | 
			
		||||
				continue
 | 
			
		||||
			case "wiki":
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user