This commit is contained in:
2024-11-12 13:20:38 -07:00
parent eef5de7ade
commit d43ab9dd3b
+4 -2
View File
@@ -71,9 +71,11 @@ function handleSleep() {
function handleCheckInstallPackages() { 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)
i=0
for package in "${packages[@]}"; do for package in "${packages[@]}"; do
which $package if [ $(which $package) ]; then
echo "$package addded to list?"
fi
done done
} }