diff --git a/CHANGES.txt b/CHANGES.txt index d52d47f..b578179 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -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 diff --git a/VERSION.txt b/VERSION.txt index 3f8eb71..94dc0ec 100644 --- a/VERSION.txt +++ b/VERSION.txt @@ -1 +1 @@ -2.17.1 +2.17.2 diff --git a/uproject b/uproject index a6cb16a..c6c2284 100755 --- a/uproject +++ b/uproject @@ -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