Skip to content

Commit

Permalink
Merge pull request moby#46094 from slonopotamus/darwin-build-fix
Browse files Browse the repository at this point in the history
pkg/chrootarchive: fix Darwin build
  • Loading branch information
neersighted authored Oct 12, 2023
2 parents 3e43f8e + 9e3ed7b commit 796c05c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//go:build unix && !linux

package chrootarchive // import "github.com/docker/docker/pkg/chrootarchive"

import (
Expand All @@ -15,9 +17,9 @@ import (
)

const (
packCmd = "freebsd-pack-in-chroot"
unpackCmd = "freebsd-unpack-in-chroot"
unpackLayerCmd = "freebsd-unpack-layer-in-chroot"
packCmd = "chrootarchive-pack-in-chroot"
unpackCmd = "chrootarchive-unpack-in-chroot"
unpackLayerCmd = "chrootarchive-unpack-layer-in-chroot"
)

func init() {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//go:build unix && !linux

package chrootarchive // import "github.com/docker/docker/pkg/chrootarchive"

import (
Expand Down

0 comments on commit 796c05c

Please sign in to comment.