summaryrefslogtreecommitdiff
path: root/pkg/machine/pull.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2021-04-22 09:29:28 -0400
committerGitHub <noreply@github.com>2021-04-22 09:29:28 -0400
commit21c77846e4b441d1da4a27a416c2f4dcd8e68cff (patch)
tree240e96a556c3612b538a2c1bbc04c410e81f857f /pkg/machine/pull.go
parenta67aec72eda161876b9ba6d4d31af0d7de8fc824 (diff)
parente356160f415b6111df09af214f0dea299e78ad04 (diff)
downloadpodman-21c77846e4b441d1da4a27a416c2f4dcd8e68cff.tar.gz
podman-21c77846e4b441d1da4a27a416c2f4dcd8e68cff.tar.bz2
podman-21c77846e4b441d1da4a27a416c2f4dcd8e68cff.zip
Merge pull request #9495 from rhatdan/groups
Add '--group-add keep-groups': supplementary groups into container
Diffstat (limited to 'pkg/machine/pull.go')
-rw-r--r--pkg/machine/pull.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/machine/pull.go b/pkg/machine/pull.go
index 41abe6993..d9f34057f 100644
--- a/pkg/machine/pull.go
+++ b/pkg/machine/pull.go
@@ -170,7 +170,7 @@ func Decompress(localPath, uncompressedPath string) error {
// Will error out if file without .xz already exists
// Maybe extracting then renameing is a good idea here..
-// depends on xz: not pre-installed on mac, so it becomes a brew dependecy
+// depends on xz: not pre-installed on mac, so it becomes a brew dependency
func decompressXZ(src string, output io.Writer) error {
fmt.Println("Extracting compressed file")
cmd := exec.Command("xzcat", "-k", src)