-
Notifications
You must be signed in to change notification settings - Fork 113
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
[plugin] Fix #505 : resources are not included in the archive on Linux #506
Conversation
The unit test "PR / Integration Tests / Test archive plugin (ResourcesPackaging) (pull_request)" fails. This is expected |
The PR now fixes both the CI script and the plugin. |
unzip -l "${ZIP_FILE}" | grep --silent hello.txt | ||
SUCCESS=$? | ||
if [ "$SUCCESS" -eq 1 ]; then |
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 know these two lines can be merged as one but I favored readability over concision
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.
LGTM
Resources are not included in the archive on Linux
#505
In addition, the script that checks if the resources are correctly included in an archive when building on Linux is not working.
It failed to detected missing resources.
This patch fix both the plugin and the CI script