Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Missing -z option for tar command #595

Closed
nononsensetekkie opened this issue Jul 10, 2023 · 1 comment · Fixed by #596
Closed

Missing -z option for tar command #595

nononsensetekkie opened this issue Jul 10, 2023 · 1 comment · Fixed by #596

Comments

@nononsensetekkie
Copy link

On Page: Build an ARM app

The following command is missing the -z option for tar command because the downloaded archive (.tgz) is compressed.

# download and extract lifecycle
curl -L https://github.com/buildpacks/lifecycle/releases/download/v<RELEASE-VERSION>/lifecycle-v<RELEASE-VERSION>+linux.arm64.tgz | tar xf -

The last part of the command after piping should be as follows:

... | tar xzf -
AidanDelaney added a commit that referenced this issue Jul 11, 2023
Fixes #595 and adds a `z` option to the
`tar` extraction command.

Signed-off-by: Aidan Delaney <adelaney21@bloomberg.net>
@AidanDelaney
Copy link
Member

Thanks for this!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants