Skip to content

Commit

Permalink
Fix build on macOS
Browse files Browse the repository at this point in the history
Without this build fails on macOS with
> ./store.go:1561:12: undefined: directory.Size
> ./store.go:1566:11: undefined: directory.Size
because directory.Size has no implementation.

Signed-off-by: Miloslav Trmač <[email protected]>
  • Loading branch information
mtrmac committed Jun 4, 2018
1 parent 4993aae commit f8bcddd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/directory/directory_unix.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// +build linux freebsd solaris
// +build linux darwin freebsd solaris

package directory

Expand Down

0 comments on commit f8bcddd

Please sign in to comment.