Skip to content

Commit

Permalink
deps: add unzip
Browse files Browse the repository at this point in the history
Signed-off-by: Vitor Bandeira <[email protected]>
  • Loading branch information
Vitor Bandeira committed Jul 8, 2024
1 parent 30fe4a4 commit 2f7e9cc
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions etc/DependencyInstaller.sh
Original file line number Diff line number Diff line change
Expand Up @@ -589,7 +589,8 @@ _installCI() {
docker-ce \
docker-ce-cli \
parallel \
software-properties-common
software-properties-common \
unzip
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg

}
Expand Down Expand Up @@ -747,6 +748,9 @@ EOF
;;
"Ubuntu" )
version=$(awk -F= '/^VERSION_ID/{print $2}' /etc/os-release | sed 's/"//g')
if [[ ${CI} == "yes" ]]; then
_installCI
fi
if [[ "${option}" == "base" || "${option}" == "all" ]]; then
_checkIsLocal
_installUbuntuPackages "${version}"
Expand All @@ -759,9 +763,6 @@ EOF
fi
_installOrTools "ubuntu" "${version}" "amd64"
fi
if [[ ${CI} == "yes" ]]; then
_installCI
fi
;;
"Red Hat Enterprise Linux")
if [[ ${CI} == "yes" ]]; then
Expand Down

0 comments on commit 2f7e9cc

Please sign in to comment.