mirror of
https://github.com/pi-hole/pi-hole.git
synced 2024-11-15 10:43:55 +00:00
Don't store FTL branch until the next release of FTL which supports returning the branch in an easy way
Signed-off-by: DL6ER <dl6er@dl6er.de>
This commit is contained in:
parent
709851503f
commit
9be854031f
1 changed files with 4 additions and 1 deletions
|
@ -46,7 +46,10 @@ function get_local_branch() {
|
||||||
|
|
||||||
CORE_BRANCH="$(get_local_branch /etc/.pihole)"
|
CORE_BRANCH="$(get_local_branch /etc/.pihole)"
|
||||||
WEB_BRANCH="$(get_local_branch /var/www/html/admin)"
|
WEB_BRANCH="$(get_local_branch /var/www/html/admin)"
|
||||||
FTL_BRANCH="$(pihole-FTL branch)"
|
#FTL_BRANCH="$(pihole-FTL branch)"
|
||||||
|
# Don't store FTL branch until the next release of FTL which
|
||||||
|
# supports returning the branch in an easy way
|
||||||
|
FTL_BRANCH="XXX"
|
||||||
|
|
||||||
echo "${CORE_BRANCH} ${WEB_BRANCH} ${FTL_BRANCH}" > "/etc/pihole/localbranches"
|
echo "${CORE_BRANCH} ${WEB_BRANCH} ${FTL_BRANCH}" > "/etc/pihole/localbranches"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue