1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-22 10:12:10 +02:00
falkonOfficial/scripts/getrevision.sh

10 lines
160 B
Bash
Raw Normal View History

#!/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;