Skip to content

Commit

Permalink
prevent path issues
Browse files Browse the repository at this point in the history
  • Loading branch information
kenohassler committed Mar 12, 2024
1 parent 9c09ef9 commit 0fce701
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@
SAST_SETUP_ENV: Dict[str, str] = {
**os.environ.copy(),
**{"CC": "clang", "CXX": "clang++", "CFLAGS": "-O0 -fno-inline", "CXXFLAGS": "-O0 -fno-inline"},
# hard-coding PATH here to prevent build systems from using Poetry's PATH
"PATH": "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
}


Expand Down

0 comments on commit 0fce701

Please sign in to comment.