Do not store archive is the base dep archive.
Now that we use a skip file to skip download, we don't need to store all the archives but just the skip file.
This commit is contained in:
parent
5cc30cf4f2
commit
8d13ad5de7
|
@ -111,7 +111,7 @@ def make_deps_archive(target, full=False):
|
|||
|
||||
relative_path = BASE_DIR
|
||||
if full:
|
||||
files_to_archive += [ARCHIVE_DIR]
|
||||
files_to_archive += ARCHIVE_DIR.glob(".*_ok")
|
||||
files_to_archive += BASE_DIR.glob('*/.*_ok')
|
||||
files_to_archive += SOURCE_DIR.glob('*/.*_ok')
|
||||
files_to_archive += [SOURCE_DIR/'pugixml-{}'.format(
|
||||
|
|
Loading…
Reference in New Issue