diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2021-04-21 05:38:34 -0400 |
---|---|---|
committer | Daniel J Walsh <dwalsh@redhat.com> | 2021-04-21 13:16:33 -0400 |
commit | 9c8277247d3e2e60a1f945d82851f58447cbdd74 (patch) | |
tree | b5d54266d444317b08cb15b04265ee5912d959ce /pkg/machine/pull.go | |
parent | 544c3156657e078cef297623842f79cb72dc32c6 (diff) | |
download | podman-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.go | 2 |
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) |