Skip to content
Snippets Groups Projects
Verified Commit 6f12bb6a authored by Jeremy Soller's avatar Jeremy Soller
Browse files

Install tar before attempting to use it

parent 59653ee2
No related branches found
No related tags found
No related merge requests found
...@@ -27,9 +27,11 @@ build:redox: ...@@ -27,9 +27,11 @@ build:redox:
# Install x86_64-unknown-redox-gcc # Install x86_64-unknown-redox-gcc
# This can't be in before_script because that overrides # This can't be in before_script because that overrides
# the global before_script. # the global before_script.
- apt-get update -qq
- apt-get install -qq tar
- rm -rf prefix - rm -rf prefix
- mkdir prefix - mkdir prefix
- wget -O - https://static.redox-os.org/toolchain/x86_64-unknown-redox/gcc-install.tar.gz | \ - wget -O - https://static.redox-os.org/toolchain/x86_64-unknown-redox/gcc-install.tar.gz |
tar --extract --gzip --directory prefix tar --extract --gzip --directory prefix
# Main script # Main script
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment