Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
version='2.1.1',
package_dir={"": "src"},
packages=find_packages(where='src'),
description='FOSSLight Source Scanner',
description='Test FOSSLight Source Scanner',
long_description=readme,
long_description_content_type='text/markdown',
license='Apache-2.0',
Expand Down
4 changes: 4 additions & 0 deletions src/fosslight_source/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ def main() -> None:
parser.add_argument('-e', '--exclude', nargs='*', required=False, default=[])
parser.add_argument('--no_correction', action='store_true', required=False)
parser.add_argument('--correct_fpath', nargs=1, type=str, required=False)
parser.add_argument('--review', nargs=1, type=str, required=False)

args = parser.parse_args()

Expand Down Expand Up @@ -98,6 +99,9 @@ def main() -> None:
correct_filepath = path_to_scan
if args.correct_fpath:
correct_filepath = ''.join(args.correct_fpath)
if args.review:
print("Create an error")
indent_err = True

time_out = args.timeout
core = args.cores
Expand Down
Loading