We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a29e69 commit 1970b3bCopy full SHA for 1970b3b
1 file changed
cli/helpers/sca_code_scanner.py
@@ -88,7 +88,9 @@ def add_dependencies_tree_document(context: click.Context, documents_to_scan: Li
88
{'filename': document.path})
89
restore_dependencies_document.content = ''
90
else:
91
- manifest_file_path = get_manifest_file_path(document)
+ is_monitor_action = context.obj.get('monitor')
92
+ project_path = context.params.get('path')
93
+ manifest_file_path = get_manifest_file_path(document, is_monitor_action, project_path)
94
logger.debug(f"Succeeded to generate dependencies tree on path: {manifest_file_path}")
95
documents_to_add.append(restore_dependencies_document)
96
0 commit comments