mirror of
				https://github.com/meshtastic/firmware.git
				synced 2025-10-28 23:34:03 +00:00 
			
		
		
		
	 9e8ca69a11
			
		
	
	
		9e8ca69a11
		
	
	
	
	
		
			
			This was originally added inb1c30f0650and it now do nothing since361556a6a7because it now use readprops.
		
			
				
	
	
		
			9 lines
		
	
	
		
			161 B
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			161 B
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
| #!/usr/bin/env python3
 | |
| import sys
 | |
| 
 | |
| from readprops import readProps
 | |
| 
 | |
| verObj = readProps("version.properties")
 | |
| propName = sys.argv[1]
 | |
| print(f"{verObj[propName]}")
 |