diff --git a/bin/dist_get b/bin/dist_get index bc25928b2..0f0cdb206 100755 --- a/bin/dist_get +++ b/bin/dist_get @@ -129,6 +129,9 @@ case $goenv in freebsd-*) archive="tar.gz" ;; + openbsd-*) + archive="tar.gz" + ;; *) echo "unrecognized system environment: $goenv" >&2 die "currently only linux, darwin, windows and freebsd are supported by this script" diff --git a/core/commands/mount_nofuse.go b/core/commands/mount_nofuse.go index a58947b13..6805da4ab 100644 --- a/core/commands/mount_nofuse.go +++ b/core/commands/mount_nofuse.go @@ -1,4 +1,4 @@ -// +build linux darwin freebsd netbsd +// +build linux darwin freebsd netbsd openbsd // +build nofuse package commands diff --git a/core/commands/mount_unix.go b/core/commands/mount_unix.go index 9dae9f544..d15424f53 100644 --- a/core/commands/mount_unix.go +++ b/core/commands/mount_unix.go @@ -1,4 +1,4 @@ -// +build linux darwin freebsd netbsd +// +build linux darwin freebsd netbsd openbsd // +build !nofuse package commands diff --git a/fuse/ipns/mount_unix.go b/fuse/ipns/mount_unix.go index 9b3afed2d..e6b551b2d 100644 --- a/fuse/ipns/mount_unix.go +++ b/fuse/ipns/mount_unix.go @@ -1,4 +1,4 @@ -// +build linux darwin freebsd netbsd +// +build linux darwin freebsd netbsd openbsd // +build !nofuse package ipns diff --git a/fuse/node/mount_nofuse.go b/fuse/node/mount_nofuse.go index 5b626cece..5ba902e0b 100644 --- a/fuse/node/mount_nofuse.go +++ b/fuse/node/mount_nofuse.go @@ -1,4 +1,4 @@ -// +build linux darwin freebsd netbsd +// +build linux darwin freebsd netbsd openbsd // +build nofuse package node diff --git a/fuse/node/mount_unix.go b/fuse/node/mount_unix.go index 9125a26bf..9f6e2761c 100644 --- a/fuse/node/mount_unix.go +++ b/fuse/node/mount_unix.go @@ -1,4 +1,4 @@ -// +build linux darwin freebsd netbsd +// +build linux darwin freebsd netbsd openbsd // +build !nofuse package node diff --git a/fuse/readonly/mount_unix.go b/fuse/readonly/mount_unix.go index d70e01292..db07a9110 100644 --- a/fuse/readonly/mount_unix.go +++ b/fuse/readonly/mount_unix.go @@ -1,4 +1,4 @@ -// +build linux darwin freebsd netbsd +// +build linux darwin freebsd netbsd openbsd // +build !nofuse package readonly diff --git a/fuse/readonly/readonly_unix.go b/fuse/readonly/readonly_unix.go index 314d5ff34..f7818c24c 100644 --- a/fuse/readonly/readonly_unix.go +++ b/fuse/readonly/readonly_unix.go @@ -1,4 +1,4 @@ -// +build linux darwin freebsd netbsd +// +build linux darwin freebsd netbsd openbsd // +build !nofuse package readonly