From 5260413e3a3179f51dbedf7b923bcc7ceb6f4bd5 Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Sun, 10 Mar 2013 23:02:27 +0100 Subject: [PATCH] archive.sh: Skip nonexistent repositories. --- archive.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/archive.sh b/archive.sh index 7522747..1cfaf93 100755 --- a/archive.sh +++ b/archive.sh @@ -37,6 +37,8 @@ fi git_clone . tmp/dotfiles for name in browser shell vcs vim x11; do + test -d $name || continue + echo "cloning $name to tmp/" git_clone $name tmp/dotfiles/$name done -- 2.43.2