Skip to content

Commit 294e558

Browse files
committed
chore: fix license header
Signed-off-by: Fred Rolland <[email protected]>
1 parent 3f0371f commit 294e558

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

make/license.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ third-party-licenses: go-licenses
5757
@echo "Collecting third-party licenses..."
5858
@$(GO_LICENSES) save ./... --save_path=third_party_licenses --ignore=github.com/ajeddeloh/go-json
5959
@echo "Generating THIRD_PARTY_NOTICES..."
60-
@find third_party_licenses -type f -iname "LICENSE*" | sort | while read -r license; do \
60+
@find third_party_licenses -type f -iname "LICENSE*" | sort --ignore-case | while read -r license; do \
6161
echo "---"; \
6262
echo "## $$(basename $$(dirname "$$license"))"; \
6363
echo ""; \

pkg/resources/deviceSelectors_test.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@
1010
// distributed under the License is distributed on an "AS IS" BASIS,
1111
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1212
// See the License for the specific language governing permissions and
13-
// limitations under the License.package resources_test
13+
// limitations under the License.
14+
15+
package resources_test
1416

1517
import (
1618
"github.com/k8snetworkplumbingwg/sriov-network-device-plugin/pkg/resources"

0 commit comments

Comments
 (0)