This commit is contained in:
2024-11-12 13:26:33 -07:00
parent 1bd4b20712
commit 76d9d552c1
+1 -1
View File
@@ -75,7 +75,7 @@ function handleCheckInstallPackages() {
packages=(git wget flex bison gperf python3 python3-pip python3-venv cmake ninja-build ccache libffi-dev libssl-dev dfu-util libusb-1.0-0) packages=(git wget flex bison gperf python3 python3-pip python3-venv cmake ninja-build ccache libffi-dev libssl-dev dfu-util libusb-1.0-0)
for package in "${packages[@]}"; do for package in "${packages[@]}"; do
if [ $(which $package) ]; then if [ -z $(which $package) ]; then
echo "$package not installed, addded to list" echo "$package not installed, addded to list"
inastallPackagees+=" $package" inastallPackagees+=" $package"
fi fi