Skip to content

Commit

Permalink
Fix call to SCons.Node.Node.build()
Browse files Browse the repository at this point in the history
  • Loading branch information
bdbaddog committed Jan 20, 2025
1 parent 572075b commit b3bc82f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SCons/Node/Alias.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ def build(self, **kw) -> None:
# pre or post actions.
# Alias node's will get 1 action and Alias.build()
# This fixes GH Issue #2281
return self.really_build(self,**kw)
return self.really_build(**kw)


def convert(self) -> None:
Expand Down

0 comments on commit b3bc82f

Please sign in to comment.