Skip to content

Commit

Permalink
Remove werror flag in BuildOpts class
Browse files Browse the repository at this point in the history
  • Loading branch information
fire committed Oct 2, 2023
1 parent 5acff6d commit 9f89177
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build_github_actions.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def add_to_flags(self, toadd: str) -> None:
self.SCONSFLAGS = f"{self.SCONSFLAGS} {toadd}"

def get_fixed_flags(self) -> str:
todel = ["warnings=all", "werror=yes"]
todel = ["warnings=all", "werror=no"]
for x in todel:
self.SCONSFLAGS = self.SCONSFLAGS.replace(x, "")
return self.SCONSFLAGS
Expand Down

0 comments on commit 9f89177

Please sign in to comment.