Intégration de la branche release-2.17.2

This commit is contained in:
Jephté Clain 2015-09-26 12:25:35 +04:00
commit 90856f1319
3 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
## Version 2.17.2 du 26/09/2015-12:25
1837a0c pxs: corriger xget, xcopy, xmove pour utiliser directement git annex sync
## Version 2.17.1 du 26/09/2015-12:21
c8c6744 pxs: support des versions <= 5.20150825

View File

@ -1 +1 @@
2.17.1
2.17.2

View File

@ -250,7 +250,7 @@ elif array_contains GITANNEX_CMDS "$CMD"; then
case "$CMD" in
annex) git annex "$@";;
xsync) xsync;;
xcopy|xmove|xget) git annex "${CMD#x}" "$@" && xsync;;
xcopy|xmove|xget) git annex "${CMD#x}" "$@" && git annex sync;;
xinitial) git_annex_initial "$@";;
*) git annex "${CMD#x}" "$@";;
esac