Skip to content

Commit

Permalink
deploy dev
Browse files Browse the repository at this point in the history
  • Loading branch information
ssantaa9 committed Aug 30, 2024
1 parent abc053d commit a7d1bff
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,10 @@ def scan_dependencies(self, prefix, cwd, mode, to_scan):
word in result.stderr
for word in ["Technology", "WorkingDirectory", "Descriptors"]
):
scan_result = json.loads(result.stdout)
if result.stdout:
scan_result = json.loads(result.stdout)
else:
scan_result = {}
file_result = os.path.join(os.getcwd(), "scan_result.json")
with open(file_result, "w") as file:
json.dump(scan_result, file, indent=4)
Expand Down
2 changes: 1 addition & 1 deletion tools/devsecops_engine_tools/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = '1.8.4'
version = '1.8.5'

0 comments on commit a7d1bff

Please sign in to comment.