-
Notifications
You must be signed in to change notification settings - Fork 909
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 asterisk link when src dir doesn't exist. #3434
Fix asterisk link when src dir doesn't exist. #3434
Conversation
57b28d9
to
e46d7e1
Compare
@@ -50,7 +50,8 @@ echo "* Setting up /usr/src links from host" | |||
|
|||
for i in "$HOST_ROOT/usr/src"/* | |||
do | |||
base=$(basename "$i") | |||
[[ -e $i ]] || continue | |||
base=$(basename "$i") |
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.
nit: formatting
/milestone 0.40.0 |
We just merged a fix for the failing CI, could you please rebase on top of master? Thank you 🙏 |
Signed-off-by: Shane Lawrence <[email protected]>
e46d7e1
to
ab2c625
Compare
Co-authored-by: Leonardo Grasso <[email protected]> Signed-off-by: Shane Lawrence <[email protected]>
LGTM label has been added. Git tree hash: dd4fae6315ff3425cc3132d00b95b5c8fd561fbc
|
Thanks! |
/approve |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: LucaGuerra, shane-lawrence The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
What type of PR is this?
/kind bug
Any specific area of the project related to this PR?
What this PR does / why we need it:
Check if path exists before creating link in driver-loader.
Which issue(s) this PR fixes:
Fixes #3433.
Special notes for your reviewer:
Does this PR introduce a user-facing change?: