We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1a08006 commit 456a49aCopy full SHA for 456a49a
3 files changed
pyproject.toml
@@ -6,7 +6,7 @@ build-backend = "hatchling.build"
6
7
[project]
8
name = "socketsecurity"
9
-version = "2.1.12"
+version = "2.1.13"
10
requires-python = ">= 3.10"
11
license = {"file" = "LICENSE"}
12
dependencies = [
socketsecurity/__init__.py
@@ -1,2 +1,2 @@
1
__author__ = 'socket.dev'
2
-__version__ = '2.1.12'
+__version__ = '2.1.13'
socketsecurity/socketcli.py
@@ -260,7 +260,7 @@ def main_code():
260
output_handler.handle_output(diff)
261
262
# Handle license generation
263
- if diff is not None and config.generate_license:
+ if diff is not None and diff.id != "no_diff_id" and config.generate_license:
264
all_packages = {}
265
for purl in diff.packages:
266
package = diff.packages[purl]
0 commit comments