mirror of
https://github.com/pi-hole/pi-hole.git
synced 2024-11-15 10:43:55 +00:00
Stay in repo directory until we error check
This commit is contained in:
parent
0375a3caa3
commit
033ba26041
1 changed files with 3 additions and 3 deletions
|
@ -105,9 +105,6 @@ GitCheckUpdateAvail() {
|
||||||
# defaults to the current one.
|
# defaults to the current one.
|
||||||
REMOTE="$(git rev-parse @{upstream})"
|
REMOTE="$(git rev-parse @{upstream})"
|
||||||
|
|
||||||
# Change back to original directory
|
|
||||||
cd "${curdir}"
|
|
||||||
|
|
||||||
if [[ ${#LOCAL} == 0 ]]; then
|
if [[ ${#LOCAL} == 0 ]]; then
|
||||||
echo "::: Error: Local revision could not be optained, ask Pi-hole support."
|
echo "::: Error: Local revision could not be optained, ask Pi-hole support."
|
||||||
echo "::: Additional debugging output:"
|
echo "::: Additional debugging output:"
|
||||||
|
@ -121,6 +118,9 @@ GitCheckUpdateAvail() {
|
||||||
exit
|
exit
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Change back to original directory
|
||||||
|
cd "${curdir}"
|
||||||
|
|
||||||
if [[ "${LOCAL}" != "${REMOTE}" ]]; then
|
if [[ "${LOCAL}" != "${REMOTE}" ]]; then
|
||||||
# Local branch is behind remote branch -> Update
|
# Local branch is behind remote branch -> Update
|
||||||
return 0
|
return 0
|
||||||
|
|
Loading…
Reference in a new issue