From 306f7a7b50091b1f6a9ff69433644f26656a47cc Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Mon, 21 Feb 2011 04:16:30 -0500 Subject: [PATCH] bugfix (public repos were publicaly cloned) --- ghsync/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ghsync/core.py b/ghsync/core.py index aee7da7..ff479e6 100644 --- a/ghsync/core.py +++ b/ghsync/core.py @@ -85,7 +85,7 @@ def run(): os.chdir(org) # I own the repo - private = True if org in ('private', 'fork', 'mirror') else False + private = True if org in ('private', 'fork', 'mirror', 'public') else False # just `git pull` if it's already there if os.path.exists(repo.name):