mirror of
https://github.com/luscis/openlan.git
synced 2025-10-07 09:30:54 +08:00
15 lines
173 B
Bash
Executable File
15 lines
173 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ -e "VERSION" ]; then
|
|
cat VERSION
|
|
exit 0
|
|
fi
|
|
|
|
ver=$(git describe --tags --abbrev=0 --match 'v*')
|
|
if [ $? -eq 0 ]; then
|
|
echo $ver
|
|
exit 0
|
|
fi
|
|
|
|
date +%y%m%d
|