mirror of
				https://github.com/optim-enterprises-bv/kubernetes.git
				synced 2025-10-31 18:28:13 +00:00 
			
		
		
		
	Fix sort on sets in hack/verify-flags-underscore.py
This commit is contained in:
		| @@ -163,13 +163,15 @@ def get_flags(rootdir, files): | ||||
|     if len(new_excluded_flags) != 0: | ||||
|         print("Found a flag declared with an _ but which is not explicitly listed as a valid flag name in hack/verify-flags/excluded-flags.txt") | ||||
|         print("Are you certain this flag should not have been declared with an - instead?") | ||||
|         new_excluded_flags.sort() | ||||
|         print("%s" % "\n".join(new_excluded_flags)) | ||||
|         l = list(new_excluded_flags) | ||||
|         l.sort() | ||||
|         print("%s" % "\n".join(l)) | ||||
|         sys.exit(1) | ||||
|     if len(new_flags) != 0: | ||||
|         print("Found flags in golang files not in the list of known flags. Please add these to hack/verify-flags/known-flags.txt") | ||||
|         new_flags.sort() | ||||
|         print("%s" % "\n".join(new_flags)) | ||||
|         l = list(new_flags) | ||||
|         l.sort() | ||||
|         print("%s" % "\n".join(l)) | ||||
|         sys.exit(1) | ||||
|     return list(flags) | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Dr. Stefan Schimanski
					Dr. Stefan Schimanski