mirror of
https://github.com/vale981/spectrwm
synced 2025-03-06 10:11:43 -05:00
8 lines
114 B
Bash
8 lines
114 B
Bash
![]() |
#!/bin/sh
|
||
|
|
||
|
CURDIR=$(dirname $0)
|
||
|
if [ -d "$CURDIR/.git" ]; then
|
||
|
cd "$CURDIR"
|
||
|
git describe --tags | tr -d '\n'
|
||
|
fi
|