mirror of
https://github.com/peridotbuild/pv2.git
synced 2024-11-21 12:41:26 +00:00
don't skip an import if meta is missing
This commit is contained in:
parent
38405b883b
commit
ec252d0581
@ -786,9 +786,11 @@ class GitImport(Import):
|
||||
pass
|
||||
|
||||
if not metafile_to_use:
|
||||
print('Source: There was no metadata file found. Skipping import attempt.')
|
||||
self.perform_cleanup([source_git_repo_path, dest_git_repo_path])
|
||||
return False
|
||||
#print('Source: There was no metadata file found. Skipping import attempt.')
|
||||
print('Source: There was no metadata file found. Import may not work correctly.')
|
||||
metafile_to_use = {}
|
||||
#self.perform_cleanup([source_git_repo_path, dest_git_repo_path])
|
||||
#return False
|
||||
|
||||
sources_dict = self.parse_metadata_file(metafile_to_use)
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
[project]
|
||||
name = "pv2"
|
||||
version = "0.12.0"
|
||||
version = "0.12.1"
|
||||
description = "PV2 backend framework module"
|
||||
readme = "README.md"
|
||||
authors = [
|
||||
|
Loading…
Reference in New Issue
Block a user