From 7d3faea802b604d22e7f1fd9c29d98bc7ae4fe45 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Thu, 12 Nov 2020 21:19:08 -0800 Subject: [PATCH] *: Remove executable bit from non-executable files 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 d9f361adb7fa1a87fa8d5ca1284bba7c3b9cb4a5 new file mode 100755 So that was born executable in d9f361adb7 (Migrate operator from v0.18.2 to v0.19.3, 2020-09-30, #65). Three more buggy bits are from that commit: $ git show d9f361adb7 | 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 36a102f958 (Migrate operator from v0.16.0 to v0.18.2, 2020-09-17, #67): $ git show 36a102f958 | 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 --- api/v1/groupversion_info.go | 0 api/v1/updateservice_types.go | 0 api/v1/zz_generated.deepcopy.go | 0 .../updateservice-operator.v1.0.0.clusterserviceversion.yaml | 0 .../updateservice.operator.openshift.io_updateservices_crd.yaml | 0 .../updateservice-operator/updateservice-operator.package.yaml | 0 controllers/updateservice_controller.go | 0 7 files changed, 0 insertions(+), 0 deletions(-) mode change 100755 => 100644 api/v1/groupversion_info.go mode change 100755 => 100644 api/v1/updateservice_types.go mode change 100755 => 100644 api/v1/zz_generated.deepcopy.go mode change 100755 => 100644 config/olm-catalog/updateservice-operator/1.0.0/updateservice-operator.v1.0.0.clusterserviceversion.yaml mode change 100755 => 100644 config/olm-catalog/updateservice-operator/1.0.0/updateservice.operator.openshift.io_updateservices_crd.yaml mode change 100755 => 100644 config/olm-catalog/updateservice-operator/updateservice-operator.package.yaml mode change 100755 => 100644 controllers/updateservice_controller.go diff --git a/api/v1/groupversion_info.go b/api/v1/groupversion_info.go old mode 100755 new mode 100644 diff --git a/api/v1/updateservice_types.go b/api/v1/updateservice_types.go old mode 100755 new mode 100644 diff --git a/api/v1/zz_generated.deepcopy.go b/api/v1/zz_generated.deepcopy.go old mode 100755 new mode 100644 diff --git a/config/olm-catalog/updateservice-operator/1.0.0/updateservice-operator.v1.0.0.clusterserviceversion.yaml b/config/olm-catalog/updateservice-operator/1.0.0/updateservice-operator.v1.0.0.clusterserviceversion.yaml old mode 100755 new mode 100644 diff --git a/config/olm-catalog/updateservice-operator/1.0.0/updateservice.operator.openshift.io_updateservices_crd.yaml b/config/olm-catalog/updateservice-operator/1.0.0/updateservice.operator.openshift.io_updateservices_crd.yaml old mode 100755 new mode 100644 diff --git a/config/olm-catalog/updateservice-operator/updateservice-operator.package.yaml b/config/olm-catalog/updateservice-operator/updateservice-operator.package.yaml old mode 100755 new mode 100644 diff --git a/controllers/updateservice_controller.go b/controllers/updateservice_controller.go old mode 100755 new mode 100644