mirror of
				https://gitea.com/gitea/tea.git
				synced 2025-10-31 01:05:26 +01:00 
			
		
		
		
	--ssh-key should be string not bool (#135) --ssh-key should be string not bool Fix #134 Reviewed-on: https://gitea.com/gitea/tea/pulls/135 Reviewed-by: 6543 <6543@noreply.gitea.io> Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com> Co-authored-by: techknowlogick <techknowlogick@gitea.io> Reviewed-on: https://gitea.com/gitea/tea/pulls/137 Reviewed-by: John Olheiser <john.olheiser@gmail.com>
This commit is contained in:
		| @@ -55,7 +55,7 @@ var cmdLoginAdd = cli.Command{ | |||||||
| 			Usage:    "Access token. Can be obtained from Settings > Applications", | 			Usage:    "Access token. Can be obtained from Settings > Applications", | ||||||
| 			Required: true, | 			Required: true, | ||||||
| 		}, | 		}, | ||||||
| 		&cli.BoolFlag{ | 		&cli.StringFlag{ | ||||||
| 			Name:    "ssh-key", | 			Name:    "ssh-key", | ||||||
| 			Aliases: []string{"s"}, | 			Aliases: []string{"s"}, | ||||||
| 			Usage:   "Path to a SSH key to use for pull/push operations", | 			Usage:   "Path to a SSH key to use for pull/push operations", | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 6543
					6543