don't skip an import if meta is missing

This commit is contained in:
Louis Abel 2024-04-09 08:34:57 -07:00
parent 38405b883b
commit ec252d0581
Signed by: label
GPG Key ID: 2A6975660E424560
2 changed files with 6 additions and 4 deletions

View File

@ -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)

View File

@ -1,6 +1,6 @@
[project]
name = "pv2"
version = "0.12.0"
version = "0.12.1"
description = "PV2 backend framework module"
readme = "README.md"
authors = [