mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-07 09:25:33 +00:00
7 lines
244 B
Bash
Executable file
7 lines
244 B
Bash
Executable file
#!/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
|