-
-
Notifications
You must be signed in to change notification settings - Fork 421
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
fix limits for packages #3946
Conversation
@@ -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) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
on_install("!windows|arm64", function (package) | |
on_install("windows|!arm64", "linux", function (package) |
There was a problem hiding this comment.
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.
There was a problem hiding this comment.
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.
xmake-io/xmake#5048