aboutsummaryrefslogtreecommitdiff
path: root/lib/os/exec
diff options
context:
space:
mode:
Diffstat (limited to 'lib/os/exec')
-rw-r--r--lib/os/exec/exec.go5
-rw-r--r--lib/os/exec/exec_test.go5
2 files changed, 4 insertions, 6 deletions
diff --git a/lib/os/exec/exec.go b/lib/os/exec/exec.go
index b7c44c5c..5b1f2200 100644
--- a/lib/os/exec/exec.go
+++ b/lib/os/exec/exec.go
@@ -1,6 +1,5 @@
-// Copyright 2020, Shulhan <ms@kilabit.info>. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
+// SPDX-License-Identifier: BSD-3-Clause
+// SPDX-FileCopyrightText: 2020 Shulhan <ms@kilabit.info>
// Package exec wrap the standar package "os/exec" to simplify calling Run
// with stdout and stderr.
diff --git a/lib/os/exec/exec_test.go b/lib/os/exec/exec_test.go
index 24cd001b..11b566ec 100644
--- a/lib/os/exec/exec_test.go
+++ b/lib/os/exec/exec_test.go
@@ -1,6 +1,5 @@
-// Copyright 2020, Shulhan <ms@kilabit.info>. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
+// SPDX-License-Identifier: BSD-3-Clause
+// SPDX-FileCopyrightText: 2020 Shulhan <ms@kilabit.info>
package exec