mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-05 14:59:44 +00:00
8 lines
183 B
Bash
8 lines
183 B
Bash
|
#!/bin/sh
|
||
|
if [ -z "$1" ]; then
|
||
|
echo "Usage: version.sh path/to/version.h"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
echo "VERSION_MAJOR.VERSION_MINOR.VERSION_PATCH" | cpp -include $1 -nostdinc -P | tr -d " "
|