Skip to content

Commit b96d25c

Browse files
authored
Added fix for files find via commit (#19)
1 parent e6a3107 commit b96d25c

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

socketsecurity/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
__author__ = 'socket.dev'
2-
__version__ = '1.0.17'
2+
__version__ = '1.0.18'

socketsecurity/core/git_interface.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,5 @@ def __init__(self, path: str):
2626
self.changed_files = []
2727
for item in self.show_files:
2828
if item != "":
29-
self.changed_files.append(item)
29+
full_path = f"{self.path}/{item}"
30+
self.changed_files.append(full_path)

0 commit comments

Comments
 (0)