Suppress unzip logs in Ubuntu image generation (#3068)

This commit is contained in:
Aleksandr Chebotov
2021-03-31 16:07:25 +03:00
committed by GitHub
parent 1572c20af1
commit 05fc867e8a
5 changed files with 6 additions and 6 deletions

View File

@@ -7,7 +7,7 @@
# Install Packer
PACKER_VERSION=$(curl -s https://checkpoint-api.hashicorp.com/v1/check/packer | jq -r .current_version)
curl -LO "https://releases.hashicorp.com/packer/${PACKER_VERSION}/packer_${PACKER_VERSION}_linux_amd64.zip"
unzip "packer_${PACKER_VERSION}_linux_amd64.zip" -d /usr/local/bin
unzip -qq "packer_${PACKER_VERSION}_linux_amd64.zip" -d /usr/local/bin
rm -f "packer_${PACKER_VERSION}_linux_amd64.zip"
invoke_tests "Tools" "Packer"