-
Notifications
You must be signed in to change notification settings - Fork 32
*: Remove executable bit from non-executable files #84
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
*: Remove executable bit from non-executable files #84
Conversation
|
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: wking The full list of commands accepted by this bot can be found here. The pull request process is described here DetailsNeeds approval from an approver in each of these files:
Approvers can indicate their approval by writing |
fcae51f to
cbfe4e1
Compare
|
/lgtm |
|
/hold Let #85 go first, then I'll rebase this. |
Generated with:
$ find . -name '*.go' -execdir chmod 644 {} \+
$ find . -name '*.yaml' -execdir chmod 644 {} \+
Tracking one of the files:
$ git log -p --follow origin/master api/v1/groupversion_info.go | grep '^commit\|new.*mode'
...
commit d9f361a
new file mode 100755
So that was born executable in d9f361a (Migrate operator from
v0.18.2 to v0.19.3, 2020-09-30, openshift#65).
Three more buggy bits are from that commit:
$ git show d9f361a | grep -B2 'new mode'
diff --git a/pkg/apis/cincinnati/v1beta1/cincinnati_types.go b/api/v1beta1/cincinnati_types.go
old mode 100644
new mode 100755
--
diff --git a/pkg/apis/cincinnati/v1beta1/zz_generated.deepcopy.go b/api/v1beta1/zz_generated.deepcopy.go
old mode 100644
new mode 100755
--
diff --git a/pkg/controller/cincinnati/cincinnati_controller.go b/controllers/cincinnati_controller.go
old mode 100644
new mode 100755
The last three are from 36a102f (Migrate operator from v0.16.0 to
v0.18.2, 2020-09-17, openshift#67):
$ git show 36a102f | grep -B2 'new mode'
diff --git a/deploy/olm-catalog/cincinnati-operator/0.0.1/cincinnati-operator.v0.0.1.clusterserviceversion.yaml b/deploy/olm-catalog/cincinnati-operator/0.0.1/cincinnati-operator.v0.0.1.clusterserviceversion.yaml
old mode 100644
new mode 100755
diff --git a/deploy/olm-catalog/cincinnati-operator/0.0.1/cincinnati.openshift.io_cincinnatis_crd.yaml b/deploy/olm-catalog/cincinnati-operator/0.0.1/cincinnati.openshift.io_cincinnatis_crd.yaml
old mode 100644
new mode 100755
diff --git a/deploy/olm-catalog/cincinnati-operator/cincinnati-operator.package.yaml b/deploy/olm-catalog/cincinnati-operator/cincinnati-operator.package.yaml
old mode 100644
new mode 100755
cbfe4e1 to
7d3faea
Compare
|
#85 landed. /hold cancel |
|
/lgtm |
Generated with:
These snuck in in d9f361a (#65) and 36a102f (#67).