From 4c47fe0a2f1801a22a5e7038f5484445b2421c5b Mon Sep 17 00:00:00 2001 From: Leonardo Taccari Date: Tue, 22 Sep 2020 19:24:53 +0200 Subject: [PATCH] Add support for NetBSD Signed-off-by: Leonardo Taccari --- content/local/store_unix.go | 2 +- sys/stat_bsd.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/content/local/store_unix.go b/content/local/store_unix.go index f5f34fd0cde7..270b8db7df12 100644 --- a/content/local/store_unix.go +++ b/content/local/store_unix.go @@ -1,4 +1,4 @@ -// +build linux solaris darwin freebsd +// +build linux solaris darwin freebsd netbsd /* Copyright The containerd Authors. diff --git a/sys/stat_bsd.go b/sys/stat_bsd.go index b9c95d90d783..4f03cd6cb0f3 100644 --- a/sys/stat_bsd.go +++ b/sys/stat_bsd.go @@ -1,4 +1,4 @@ -// +build darwin freebsd +// +build darwin freebsd netbsd /* Copyright The containerd Authors.