add missing install dep for shfmt (#2025)

* add missing install dep for shfmt

* if we're given an ubuntu version and its not 20.04.. then install shfmt

* fix broken check for if no argument was passed to install_apt
pull/2030/head
smiley 2 years ago committed by GitHub
parent e8f423ac4f
commit 8a2aa7f74f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -100,7 +100,7 @@ install_apt() {
gcc-aarch64-linux-gnu \
gcc-riscv64-linux-gnu
if [[ "$1" == "22.04" ]]; then
if [[ "$1" != "" && "$1" != "20.04" ]]; then
sudo apt install shfmt
fi

Loading…
Cancel
Save