Index: Dev/github/GitHubBackup.pm
===================================================================
--- Dev/github/GitHubBackup.pm	(revision f38b66d105e866ad030cb8a55b5fd28d13434293)
+++ Dev/github/GitHubBackup.pm	(revision 935323811ae80b6db14f3b793d926e26cb74fb8f)
@@ -201,10 +201,10 @@
     if (-d "$dir") {
         local $CWD = $dir;
-        print "fetch ", $dir, "\n";
+        print "fetch $dir\n";
         Git::Repository->run(fetch => '--all');
         return $self;
     }
     
-    print "clone ", $dir, "\n";
+    print "clone $dir\n";
     mkpath $dir;
     Git::Repository->run(clone => '--mirror' => $url => $dir);
@@ -252,5 +252,5 @@
     
     foreach my $fork (@fetch) {
-        print "fetch ", $fork, "\n";
+        print "fetch $fork\n";
         Git::Repository->run(fetch => $fork);
     }
@@ -264,4 +264,13 @@
     my $dir = $self->directory . '.wiki.git';
     my $url = 'https://github.com/' . $self->full_name . '.wiki.git';
+    
+    my $ua = LWP::UserAgent->new(max_redirect => 0);
+    my $res = $ua->head(
+        'https://github.com/' . $self->full_name . '/wiki'
+    );
+    if ($res->code != 200) {
+        print "$dir does not exist\n";
+        return $self;
+    }
     
     $self->sync($url => $dir);
