fixed online load of scriptsfixed online load of scripts
This commit is contained in:
parent
9831aa85ae
commit
0e155fafb3
2 changed files with 3 additions and 3 deletions
2
PRbL
2
PRbL
|
|
@ -1 +1 @@
|
||||||
Subproject commit 0bd9104a89603fdb7b5c449d530b593c792bf1cd
|
Subproject commit 876da7521ce61bf20bf83818a8e84f7b05727b22
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
#/bin/bash
|
#!/bin/bash
|
||||||
# CodeDog Bootstrap installer script
|
# CodeDog Bootstrap installer script
|
||||||
|
|
||||||
# Bash expansions to get the name and location of this script when run
|
# 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
|
run sudo apt-get install -y python3-pip
|
||||||
fi
|
fi
|
||||||
for pkg in ${pip_packages[@]} ; do
|
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
|
if [[ $pippkg_installed != 0 ]] ; then
|
||||||
bins_missing+=("pip: $pkg")
|
bins_missing+=("pip: $pkg")
|
||||||
fi
|
fi
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue