diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2013-01-13 17:32:58 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2013-01-13 17:32:58 -0200 |
commit | a64487d5db57b9e281a5953b082618d2c1fca8a4 (patch) | |
tree | bfd1f26e5eaccf9cfd3d2809a49161beceb7f9b6 /misc/annex-fsck | |
parent | f6978c1b28db3308808f2e303c607047f97a96c5 (diff) | |
download | scripts-a64487d5db57b9e281a5953b082618d2c1fca8a4.tar.gz scripts-a64487d5db57b9e281a5953b082618d2c1fca8a4.tar.bz2 |
Removing old scripts and cleaning up some code
Diffstat (limited to 'misc/annex-fsck')
-rwxr-xr-x | misc/annex-fsck | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/misc/annex-fsck b/misc/annex-fsck deleted file mode 100755 index 2ef8066..0000000 --- a/misc/annex-fsck +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/bash - -cd /var/cache/media - -for file in *; do - if [ -d "$file/.git" ]; then - ( echo "Checking $file..." && cd $file && git annex fsck --fast | grep -v " ok" | tee -a /tmp/annex-fsck.log ) - fi -done |