-
-
Notifications
You must be signed in to change notification settings - Fork 4.5k
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
[BUG] build do not fail when cleaning up but there is no lock files #587
Conversation
I would rather explicitly check the file existence. Otherwise it may suppress some valid cases (e.g. locked file on NFS, etc.) |
Hello, |
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.
👍
@carlossg wdyt? |
Not sure if it makes a difference but I would use
|
@carlossg When I run
Any idea ? |
Needs the
|
@Aigrefin did you try Carlos proposal? |
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, will merge when I see a green PR build.
https://ci.jenkins.io/job/Packaging/job/docker/job/PR-587/2055/console succeeded, but for some reason there's a credentials issue apparently going on to report the status back: Merging. |
Hello there,
The build fails when there is no plugins, because install-plugins.sh tries to
rm
lock files without-f
.This commit adds the
-f
option to therm
of "Cleaning up locks", allowing the script to finish gracefully.Happy Hacktoberfest !