aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xbin/sync14
1 files changed, 8 insertions, 6 deletions
diff --git a/bin/sync b/bin/sync
index d192d9bef6d..be521eed9c2 100755
--- a/bin/sync
+++ b/bin/sync
@@ -8,11 +8,13 @@ CWD="`/bin/pwd`"
GIT="/usr/bin/git"
NICE="/usr/bin/nice -n 19"
IONICE="/user/bin/ionice -c 3"
-ARCHIVE="/var/cache/sites/arquivo"
+ARCHIVE="/var/cache/media/arquivo"
# Run
-cd $ARCHIVE
-$IONICE $NICE $GIT annex add . && \
-$IONICE $NICE $GIT annex sync && \
-$IONICE $NICE $GIT annex get . &> /dev/null
-cd $CWD
+if [ -d "$ARCHIVE/.git/annex" ]; then
+ cd $ARCHIVE
+ $IONICE $NICE $GIT annex add . && \
+ $IONICE $NICE $GIT annex sync && \
+ $IONICE $NICE $GIT annex get . &> /dev/null
+ cd $CWD
+fi