Browse Source

vcs_update: avoid using git aliases

Signed-off-by: Alejandro Mery <amery@geeks.cl>
master
Alejandro Mery 10 years ago
parent
commit
cd30a00a73
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      files/bin/vcs_update

+ 1
- 1
files/bin/vcs_update

@ -19,7 +19,7 @@ update_git() {
git fetch -q --all --prune
git remote | xargs -r git fetch -q --multiple --prune --tags
if [ -n "$(git ls -md)" ]; then
if [ -n "$(git ls-files -md)" ]; then
if git stash -q; then
staged=true
fi

Loading…
Cancel
Save