From 55ea6987841b240ce65d6e7231ddb8046b4369c0 Mon Sep 17 00:00:00 2001 From: Brice Rising Date: Mon, 17 Dec 2018 16:10:55 -0500 Subject: [PATCH] Add Apache License line to fsutil This is probably not the correct apporach to using bsd licensed code under an apache license. Signed-off-by: Brice Rising --- pkg/fsutil/fs.go | 4 +++- pkg/fsutil/fs_test.go | 5 ++++- pkg/fsutil/rename.go | 4 +++- pkg/fsutil/rename_windows.go | 4 +++- 4 files changed, 13 insertions(+), 4 deletions(-) diff --git a/pkg/fsutil/fs.go b/pkg/fsutil/fs.go index bee8a6cd7..f1a26a411 100644 --- a/pkg/fsutil/fs.go +++ b/pkg/fsutil/fs.go @@ -1,6 +1,8 @@ // Copyright 2016 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. +// license. + +// Licensed under the Apache License, Version 2.0 (the "License"); package fs diff --git a/pkg/fsutil/fs_test.go b/pkg/fsutil/fs_test.go index 072c5ce49..8093eea48 100644 --- a/pkg/fsutil/fs_test.go +++ b/pkg/fsutil/fs_test.go @@ -1,6 +1,9 @@ // Copyright 2016 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. +// license. + +// Licensed under the Apache License, Version 2.0 (the "License"); + package fs diff --git a/pkg/fsutil/rename.go b/pkg/fsutil/rename.go index c48f69f1a..059e027ee 100644 --- a/pkg/fsutil/rename.go +++ b/pkg/fsutil/rename.go @@ -1,6 +1,8 @@ // Copyright 2016 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. +// license. + +// Licensed under the Apache License, Version 2.0 (the "License"); // +build !windows diff --git a/pkg/fsutil/rename_windows.go b/pkg/fsutil/rename_windows.go index 50829a5cd..c8491e94a 100644 --- a/pkg/fsutil/rename_windows.go +++ b/pkg/fsutil/rename_windows.go @@ -1,6 +1,8 @@ // Copyright 2016 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. +// license. + +// Licensed under the Apache License, Version 2.0 (the "License"); // +build windows