mirror of
https://github.com/arcanericky/totp.git
synced 2026-05-17 07:55:45 +03:00
9 lines
149 B
Bash
Executable File
9 lines
149 B
Bash
Executable File
#!/bin/bash
|
|
|
|
VERSION=$(git tag --points-at HEAD | head -1)
|
|
if [ -z "$VERSION" ]; then
|
|
VERSION=$(git rev-parse HEAD | cut -c 1-7)
|
|
fi
|
|
|
|
echo $VERSION
|