-
Notifications
You must be signed in to change notification settings - Fork 502
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 build break - Deal better with wild cards #800
Fix build break - Deal better with wild cards #800
Conversation
/assign @cblecker @BenTheElder |
/assign @spiffxp @justaugustus |
@@ -575,7 +575,7 @@ release::gcs::push_release_artifacts() { | |||
# We explicitly don't set an ACL in the cp call, since doing so will override | |||
# any default bucket ACLs. | |||
logecho -n "- Copying artifacts to $dest: " | |||
logrun -s "$GSUTIL" -qm cp -rc "$src/*" "$dest/" || return 1 | |||
logrun -s "$GSUTIL" -qm cp -rc "$src"/* "$dest/" || return 1 |
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: we should use brace expansion
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.
maybe:
logrun -s "$GSUTIL" -qm cp -rc "$src"/* "$dest/" || return 1 | |
logrun -s "$GSUTIL" -qm cp -rc "${src}/"* "$dest/" || return 1 |
?
/lgtm |
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
LGTM for correctness fix, style nits can come later
/lgtm |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: BenTheElder, dims, hoegaarden, pswica 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 |
Fix problem in latest logs - https://prow.k8s.io/view/gcs/kubernetes-jenkins/logs/ci-kubernetes-build/1146138862850936833/