diff options
Diffstat (limited to 'scripts/git-mirror.cron')
-rwxr-xr-x | scripts/git-mirror.cron | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/scripts/git-mirror.cron b/scripts/git-mirror.cron deleted file mode 100755 index 311180a..0000000 --- a/scripts/git-mirror.cron +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/bash - -[[ $(id -u) -eq 0 ]] && exec sudo -H -u randomdan $0 $@ - -find /var/git -maxdepth 2 -name config -type f | \ - xargs grep -F '[remote "github"]' -l | \ - xargs dirname | \ - while read d - do git -C $d push -q github --mirror || echo "Mirroring $d failed" - done |