mirror of
https://github.com/pi-hole/pi-hole.git
synced 2024-11-15 10:43:55 +00:00
Merge pull request #1040 from pi-hole/fix/updater_git-C
Remove git -C from update.sh
This commit is contained in:
commit
62d001225a
1 changed files with 17 additions and 7 deletions
24
advanced/Scripts/update.sh
Normal file → Executable file
24
advanced/Scripts/update.sh
Normal file → Executable file
|
@ -22,9 +22,15 @@ readonly PI_HOLE_FILES_DIR="/etc/.pihole"
|
||||||
is_repo() {
|
is_repo() {
|
||||||
# Use git to check if directory is currently under VCS, return the value
|
# Use git to check if directory is currently under VCS, return the value
|
||||||
local directory="${1}"
|
local directory="${1}"
|
||||||
|
local curdir
|
||||||
|
local rc
|
||||||
|
|
||||||
git -C "${directory}" status --short &> /dev/null
|
curdir="${PWD}"
|
||||||
return
|
cd "${directory}" &> /dev/null || return 1
|
||||||
|
git status --short &> /dev/null
|
||||||
|
rc=$?
|
||||||
|
cd "${curdir}" &> /dev/null || return 1
|
||||||
|
return $rc
|
||||||
}
|
}
|
||||||
|
|
||||||
prep_repo() {
|
prep_repo() {
|
||||||
|
@ -46,16 +52,20 @@ make_repo() {
|
||||||
|
|
||||||
update_repo() {
|
update_repo() {
|
||||||
local directory="${1}"
|
local directory="${1}"
|
||||||
local retVal=0
|
local curdir
|
||||||
# Pull the latest commits
|
# Pull the latest commits
|
||||||
|
|
||||||
|
curdir="${PWD}"
|
||||||
|
cd "${directory}" &> /dev/null || return 1
|
||||||
# Stash all files not tracked for later retrieval
|
# Stash all files not tracked for later retrieval
|
||||||
git -C "${directory}" stash --all --quiet &> /dev/null || ${retVal}=1
|
git stash --all --quiet &> /dev/null
|
||||||
# Force a clean working directory for cloning
|
# Force a clean working directory for cloning
|
||||||
git -C "${directory}" clean --force -d &> /dev/null || ${retVal}=1
|
git clean --force -d &> /dev/null
|
||||||
# Fetch latest changes and apply
|
# Fetch latest changes and apply
|
||||||
git -C "${directory}" pull --quiet &> /dev/null || ${retVal}=1
|
git pull --quiet &> /dev/null
|
||||||
return ${retVal}
|
cd "${curdir}" &> /dev/null || return 1
|
||||||
|
|
||||||
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
getGitFiles() {
|
getGitFiles() {
|
||||||
|
|
Loading…
Reference in a new issue