Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix limits for packages #3946

Merged
merged 14 commits into from
May 5, 2024
2 changes: 1 addition & 1 deletion packages/t/tobiaslocker_base64/xmake.lua
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ package("tobiaslocker_base64")
add_urls("https://github.com/tobiaslocker/base64.git")
add_versions("2024.02.26", "387b32f337b83d358ac1ffe574e596ba99c41d31")

on_install("windows|!arm64", function (package)
on_install("!windows|arm64", function (package)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
on_install("!windows|arm64", function (package)
on_install("windows|!arm64", "linux", function (package)

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would add this change but it would limit the package to only windows and linux.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That's fine, it was already limited to just windows before, you're just adding linux for now.

os.cp("include/base64.hpp", package:installdir("include/tobiaslocker_base64"))
end)

Expand Down
Loading