Skip to content

Commit

Permalink
build: Fix accidental implicit string concat
Browse files Browse the repository at this point in the history
caught with ruff check
  • Loading branch information
triallax authored and gavv committed Nov 22, 2024
1 parent 2a3a94c commit 8271990
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SConstruct
Original file line number Diff line number Diff line change
Expand Up @@ -789,7 +789,7 @@ else:
'target_posix_ext',
])

if meta.platform in ['linux', 'android' 'darwin'] or meta.gnu_toolchain:
if meta.platform in ['linux', 'android', 'darwin'] or meta.gnu_toolchain:
env.Append(ROC_TARGETS=[
# GNU C++ Standard Library (libstdc++), or compatible, like
# LLVM C++ Standard Library (libc++)
Expand Down

0 comments on commit 8271990

Please sign in to comment.