BlueWallet/scripts/current-branch.sh
2022-04-30 13:27:01 +01:00

16 lines
276 B
Bash
Executable File

#!/bin/sh
if [ -n "$GITHUB_HEAD_REF" ]; then
echo \"$GITHUB_HEAD_REF\"
exit
fi
BRANCH1=`git log -n 1 --pretty=%d HEAD | awk '{print $2}' | sed 's/origin\///' | sed 's/)//'`
if [ "$BRANCH1" = '->' ]
then
BRANCH1=`git rev-parse --abbrev-ref HEAD`
fi
echo \"$BRANCH1\"