This commit is contained in:
2024-11-12 13:30:22 -07:00
parent 91d11073df
commit 28acb90c60
2 changed files with 5 additions and 2 deletions
+4 -1
View File
@@ -75,7 +75,10 @@ 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)
for package in "${packages[@]}"; do
if [ -z $(which $package) ]; then
$(which $package)
ret=$?
echo $ret
if [ $ret == 1 ]; then
echo "$package not installed, addded to list"
inastallPackagees+=" $package"
fi
+1 -1
View File
@@ -1 +1 @@
60-rc2.3
60-rc2.4