Browse Source

scripts: update check_license_headers.sh to skip zsyscall_windows.go

Signed-off-by: Aaron Klotz <[email protected]>
Aaron Klotz 3 years ago
parent
commit
446d03e108
1 changed files with 3 additions and 0 deletions
  1. 3 0
      scripts/check_license_headers.sh

+ 3 - 0
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