chiark / gitweb /
Fix import directory bug
authorCiaran Gultnieks <ciaran@ciarang.com>
Mon, 20 Aug 2012 11:57:28 +0000 (12:57 +0100)
committerCiaran Gultnieks <ciaran@ciarang.com>
Mon, 20 Aug 2012 11:57:28 +0000 (12:57 +0100)
fdroidserver/import.py

index 60690fc5f607157313d08afaa19145e506aec2df..783e9c6e606c5ca2122ebda099bc25216a0814d9 100644 (file)
@@ -204,8 +204,8 @@ def main():
     # Get a copy of the source so we can extract some info...
     print 'Getting source from ' + repotype + ' repo at ' + repo
     src_dir = os.path.join(tmp_dir, 'importer')
-    if os.path.exists(tmp_dir):
-        shutil.rmtree(tmp_dir)
+    if os.path.exists(src_dir):
+        shutil.rmtree(src_dir)
     vcs = common.getvcs(repotype, repo, src_dir)
     vcs.gotorevision(None)
     if options.subdir: