fixed online load of scriptsfixed online load of scripts

This commit is contained in:
alanw 2023-05-09 15:00:14 -07:00
parent 9831aa85ae
commit 0e155fafb3
2 changed files with 3 additions and 3 deletions

2
PRbL

@ -1 +1 @@
Subproject commit 0bd9104a89603fdb7b5c449d530b593c792bf1cd
Subproject commit 876da7521ce61bf20bf83818a8e84f7b05727b22

View file

@ -1,4 +1,4 @@
#/bin/bash
#!/bin/bash
# CodeDog Bootstrap installer script
# Bash expansions to get the name and location of this script when run
@ -62,7 +62,7 @@ check-deps(){
run sudo apt-get install -y python3-pip
fi
for pkg in ${pip_packages[@]} ; do
pippkg_installed=$(pip list | grep -F $pkg ; echo &?)
pippkg_installed=$(pip list | grep -F $pkg ; echo $?)
if [[ $pippkg_installed != 0 ]] ; then
bins_missing+=("pip: $pkg")
fi