-
Notifications
You must be signed in to change notification settings - Fork 98
Fix an rsync issue causing "Permission denied" errors #3176
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
base: main
Are you sure you want to change the base?
Conversation
4df68bc
to
b06bcfe
Compare
@@ -63,6 +63,9 @@ if [[ -n "${BAZEL_OUTPUTS_DSYM:-}" ]]; then | |||
$(xargs -n1 <<< "$BAZEL_OUTPUTS_DSYM") \ | |||
"$TARGET_BUILD_DIR" | |||
|
|||
# Works around an rsync issue causing "Permission denied" errors | |||
chmod +w "$TARGET_BUILD_DIR" |
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.
Do we want to do this unconditionally or per OS version? Lacking some context about the previous PR adding --perms
so wanted to confirm
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.
cc @luispadron @brentleyjones when you're available I'd appreciate if you could clarify please 🙇
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 don't think we want a version check.
Signed-off-by: Thiago Cruz <[email protected]>
b06bcfe
to
7f854f4
Compare
for some reason i'm still facing |
@iMostfa are you able to provide a repro for this? Maybe a small zipped project or using of the examples in |
@thiagohmcruz is there anything else i can do to help you debug the issue ? |
@iMostfa there's an ongoing discussion in the Bazel slack, some folks finding issues in their internal setup as well, maybe check that thread and see if it helps? I'm holding this PR for now as I'm not sure if it's fully addressing the issue. I'll have to run more tests to verify that, thx for the help so far! |
It seems like there's a fix in the works, closing this for now. |
I don't think the homebrew path is a long term fix. It would be nice to have a different reliable route if possible. |
Follow up to #3175