Intégration de la branche release-1.8.1

This commit is contained in:
Jephté Clain 2015-05-19 10:45:42 +04:00
commit bc3cbb4175
3 changed files with 9 additions and 3 deletions

View File

@ -1,3 +1,8 @@
## Version 1.8.1 du 19/05/2015-10:45
de8d690 Intégration de la branche annex-support
2044181 ne pas synchroniser l'annexe en mode automatique
## Version 1.8.0 du 19/05/2015-10:27
4779695 Intégration de la branche annex-support

View File

@ -1 +1 @@
1.8.0
1.8.1

View File

@ -485,8 +485,9 @@ function git_push() {
return $?
elif git_have_annex; then
# Si une annexe existe dans le dépôt, demander à git-annex de faire la
# synchronisation, sauf si --no-annex est spécifié
if [ -z "$no_annex" ]; then
# synchronisation, sauf si --no-annex est spécifié ou si on est en mode
# automatique
if [ -z "$no_annex" -a -z "$auto" ]; then
git annex sync
return $?
fi