summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xshare/hydra/sync7
1 files changed, 6 insertions, 1 deletions
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