mirror of
https://invent.kde.org/network/falkon.git
synced 2024-11-11 09:32:12 +01:00
10 lines
160 B
Bash
10 lines
160 B
Bash
|
#!/bin/bash
|
||
|
#git show-ref refs/heads/master | cut -d " " -f 1 | cut -c 1-10
|
||
|
|
||
|
cd ..
|
||
|
if [ -e "git_revision" ]; then
|
||
|
cat git_revision | cut -c 1-10;
|
||
|
fi
|
||
|
|
||
|
exit;
|