summaryrefslogtreecommitdiff
path: root/pkg/machine/pull.go
diff options
context:
space:
mode:
authorDaniel J Walsh <dwalsh@redhat.com>2021-04-21 05:38:34 -0400
committerDaniel J Walsh <dwalsh@redhat.com>2021-04-21 13:16:33 -0400
commit9c8277247d3e2e60a1f945d82851f58447cbdd74 (patch)
treeb5d54266d444317b08cb15b04265ee5912d959ce /pkg/machine/pull.go
parent544c3156657e078cef297623842f79cb72dc32c6 (diff)
downloadpodman-9c8277247d3e2e60a1f945d82851f58447cbdd74.tar.gz
podman-9c8277247d3e2e60a1f945d82851f58447cbdd74.tar.bz2
podman-9c8277247d3e2e60a1f945d82851f58447cbdd74.zip
Fixes from make codespell
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
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)