From fb10087caf99fa1564d1c2bf8c0655121e16d074 Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Mon, 16 Sep 2013 21:27:05 -0300 Subject: Sync: using git-annex for bootless --- share/hydra/sync | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/share/hydra/sync b/share/hydra/sync index 49522de..e3fb571 100755 --- a/share/hydra/sync +++ b/share/hydra/sync @@ -35,7 +35,12 @@ for repository in $REPOSITORIES; do if [ -d "$HYDRA_FOLDER/$repository/.git" ]; then echo "Syncing $repository..." - ( cd $HYDRA_FOLDER/$repository && git pull origin master && git submodule update --init ) + + if [ "$repository" == "bootless" ]; then + ( cd $HYDRA_FOLDER/$repository && git annex sync ) + else + ( cd $HYDRA_FOLDER/$repository && git pull origin master && git submodule update --init ) + fi fi done -- cgit v1.2.3