[library-web] don't use fake tar file for git modules



commit 0721d37c853ec6fd2b22f43bbaee31eb680bce95
Author: Frédéric Péters <fpeters 0d be>
Date:   Wed Jan 29 17:46:33 2014 +0000

    don't use fake tar file for git modules

 src/lgo.py |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/src/lgo.py b/src/lgo.py
index 23c42ab..90ac258 100755
--- a/src/lgo.py
+++ b/src/lgo.py
@@ -649,7 +649,7 @@ class Lgo(App):
                 logging.debug('removing old copy of files from %s' % base_tarball_name)
                 shutil.rmtree(ext_dirname, ignore_errors = True)
             tar = tarfile.open(filename, 'r')
-        elif stamp_file and os.path.exists(stamp_file):
+        elif stamp_file and os.path.exists(stamp_file) and not tarball_name.endswith('.999'):
             tar = utils.FakeTarFile(ext_dirname)
         else:
             tar = tarfile.open(filename, 'r')


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]