Skip to content

Commit

Permalink
Adding yq to installed packages.
Browse files Browse the repository at this point in the history
Signed-off-by: Yoni Bettan <[email protected]>
  • Loading branch information
ybettan committed Jan 10, 2024
1 parent a0d00d2 commit 4373d16
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions scripts/install_packages.sh
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ packages+=(slack)
packages+=(kubectl)
packages+=(oc)
packages+=(kind)
packages+=(yq)
packages+=(thunderbird)
packages+=(gnome-tweaks)
packages+=(cmake libevdev-devel glib2-devel systemd-devel libconfig-devel gcc-c++) # needed for building 'logiops'
Expand Down Expand Up @@ -142,6 +143,9 @@ if [[ ${OS} == "Linux" ]]; then
curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.20.0/kind-linux-amd64
chmod +x ./kind
sudo mv ./kind /usr/local/bin/kind || failedPackages+=($p)
elif [[ $p == yq ]]; then
curl -Lo /usr/local/bin/yq https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64
chmod +x /usr/local/bin/yq || failedPackages+=($p)
elif [[ $p == gnome-tweaks ]] && [[ $distribution == ubuntu ]]; then
continue
elif [[ $p == libevdev-devel ]] && [[ $distribution == ubuntu ]]; then
Expand Down

0 comments on commit 4373d16

Please sign in to comment.