mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-29 10:57:44 +09:00 
			
		
		
		
	Improve argument parsing for serve command
This commit is contained in:
		| @@ -90,7 +90,10 @@ func runServ(k *cli.Context) { | ||||
| 	} | ||||
| 	setup("serv.log") | ||||
|  | ||||
| 	keys := strings.Split(os.Args[2], "-") | ||||
| 	if len(k.Args()) < 1 { | ||||
| 		log.GitLogger.Fatal(2, "Not enough arguments") | ||||
| 	} | ||||
| 	keys := strings.Split(k.Args()[0], "-") | ||||
| 	if len(keys) != 2 { | ||||
| 		println("Gogs: auth file format error") | ||||
| 		log.GitLogger.Fatal(2, "Invalid auth file format: %s", os.Args[2]) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user