1
0
mirror of https://github.com/pi-hole/pi-hole synced 2024-11-13 19:28:59 +00:00

Ask pihole-FTL for the branch it was compiled from instead of trusting the checkout file to be present.

Signed-off-by: DL6ER <dl6er@dl6er.de>
This commit is contained in:
DL6ER 2020-04-21 08:51:17 +02:00
parent 3cc9ba4ee8
commit 176fbaf83b
No known key found for this signature in database
GPG Key ID: FB60471F0575164A

View File

@ -119,7 +119,7 @@ getLocalBranch(){
# Local FTL btranch is stored in /etc/pihole/ftlbranch
if [[ "$1" == "FTL" ]]; then
branch=$(cat /etc/pihole/ftlbranch)
branch="$(pihole-FTL branch)"
else
cd "${directory}" 2> /dev/null || { echo "${DEFAULT}"; return 1; }
branch=$(git rev-parse --abbrev-ref HEAD || echo "$DEFAULT")