5
0
mirror of https://github.com/cwinfo/yggdrasil-go.git synced 2024-11-09 16:20:26 +00:00

Try symbolic-ref to get branch name

This commit is contained in:
Neil Alexander 2018-03-05 21:54:30 +00:00
parent d58c971559
commit c57cf73219

View File

@ -1,7 +1,7 @@
#!/bin/sh
# Get the branch name
BRANCH=$(git name-rev --name-only HEAD 2>/dev/null)
BRANCH=$(git symbolic-ref --short HEAD 2>/dev/null)
# Check if the branch name is not master
if [ "$BRANCH" = "master" ]; then