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