Removed some of the &> /dev/null

pull/1033/head
DL6ER 8 years ago
parent 0276c72fe2
commit b020010f0d
No known key found for this signature in database
GPG Key ID: 00135ACBD90B28DD

@ -40,22 +40,19 @@ make_repo() {
local remoteRepo="${2}"
local directory="${1}"
(prep_repo "${directory}" && git clone -q --depth 1 "${remoteRepo}" "${directory}" > /dev/null)
(prep_repo "${directory}" && git clone -q --depth 1 "${remoteRepo}" "${directory}")
return
}
update_repo() {
local directory="${1}"
local retVal=0
# Pull the latest commits
# Stash all files not tracked for later retrieval
git -C "${directory}" stash --all --quiet &> /dev/null || ${retVal}=1
git -C "${directory}" stash --all --quiet
# Force a clean working directory for cloning
git -C "${directory}" clean --force -d &> /dev/null || ${retVal}=1
git -C "${directory}" clean --force -d
# Fetch latest changes and apply
git -C "${directory}" pull --quiet &> /dev/null || ${retVal}=1
return ${retVal}
git -C "${directory}" pull --quiet
}
getGitFiles() {

Loading…
Cancel
Save