mirror of
https://github.com/meshtastic/firmware.git
synced 2025-02-01 02:09:57 +00:00
9e8ca69a11
This was originally added inb1c30f0650
and it now do nothing since361556a6a7
because 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]}")
|