From 446d03e108fad2aa062f8f58bbefd5a248a31a18 Mon Sep 17 00:00:00 2001 From: Aaron Klotz Date: Wed, 27 Jul 2022 16:03:44 -0600 Subject: [PATCH] scripts: update check_license_headers.sh to skip zsyscall_windows.go Signed-off-by: Aaron Klotz --- scripts/check_license_headers.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/check_license_headers.sh b/scripts/check_license_headers.sh index 253515f5d..84e561ce5 100755 --- a/scripts/check_license_headers.sh +++ b/scripts/check_license_headers.sh @@ -44,6 +44,9 @@ for file in $(find $1 -name '*.go' -not -path '*/.git/*'); do $1/control/controlbase/noiseexplorer_test.go) # Noiseexplorer.com copyright. ;; + */zsyscall_windows.go) + # Generated syscall wrappers + ;; *) header="$(head -3 $file)" if ! check_file "$header"; then