Skip to content

Commit

Permalink
fix boolean operator
Browse files Browse the repository at this point in the history
  • Loading branch information
enzalito committed Jul 15, 2024
1 parent 8fe1c34 commit 39008c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/b/binutils/xmake.lua
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ package("binutils")
if package:is_binary() then
local tools = {"lb", "ranlib", "objcopy"}
for _, tool in ipairs(tools) do
if !package:find_tool(tool) then
if not package:find_tool(tool) then
return
end
end
Expand Down

0 comments on commit 39008c8

Please sign in to comment.