Skip to content

Commit

Permalink
fix(sast): add log for sast on windows (#6397)
Browse files Browse the repository at this point in the history
add log for sast on windows
  • Loading branch information
achiar99 committed Jun 4, 2024
1 parent 2056e61 commit 1aac43d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions checkov/sast/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ def run(self, root_folder: Optional[str],
collect_skip_comments: bool = True) -> List[Report]:

if sys.platform.startswith('win'):
logger.warning('Skip SAST for windows')
# TODO: Enable SAST for windows runners.
return [Report(self.check_type)]

Expand Down

0 comments on commit 1aac43d

Please sign in to comment.