mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-07 17:36:00 +00:00
7 lines
250 B
Bash
7 lines
250 B
Bash
#!/bin/bash
|
|
# Get the version number from VERSION.md
|
|
# When building from a Linux source package, `VERSION.md` is in the
|
|
# same directory as this script.
|
|
VERSIONFILE=VERSION.md
|
|
[ -f ../../VERSION.md ] && VERSIONFILE=../../VERSION.md
|
|
cat $VERSIONFILE
|