Removed remaining git -C

This commit is contained in:
DL6ER 2016-12-25 01:17:46 +01:00
parent 3365ef7aaa
commit 5e28e6b9ac
No known key found for this signature in database
GPG key ID: 00135ACBD90B28DD

View file

@ -52,13 +52,18 @@ make_repo() {
update_repo() { update_repo() {
local directory="${1}" local directory="${1}"
local curdir
curdir="${PWD}"
cd "${directory}" &> /dev/null || return 1
# Pull the latest commits # Pull the latest commits
# Stash all files not tracked for later retrieval # Stash all files not tracked for later retrieval
git -C "${directory}" stash --all --quiet git stash --all --quiet
# Force a clean working directory for cloning # Force a clean working directory for cloning
git -C "${directory}" clean --force -d git clean --force -d
# Fetch latest changes and apply # Fetch latest changes and apply
git -C "${directory}" pull --quiet git pull --quiet
cd "${curdir}" &> /dev/null || return 1
} }
getGitFiles() { getGitFiles() {