mirror of
https://github.com/meshtastic/protobufs.git
synced 2026-04-20 22:13:55 +00:00
8 lines
179 B
Python
8 lines
179 B
Python
|
|
#!/usr/bin/env python3
|
||
|
|
import configparser
|
||
|
|
import sys
|
||
|
|
from readprops import readProps
|
||
|
|
|
||
|
|
verObj = readProps('version.properties')
|
||
|
|
propName = sys.argv[1]
|
||
|
|
print(f"{verObj[propName]}")
|