Publishs ambient information to mqtt server
Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
123456789101112131415161718192021222324 |
- #!/bin/bash
- #
- BASEPATH=`realpath $(dirname $0)`
-
- #
- # Create venv
- #
- if [[ ! -e $BASEPATH/venv ]]; then
- python3 -m venv $BASEPATH/venv > /dev/null 2>&1
- # $BASEPATH/venv/bin/pip install --upgrade pip
- find $BASEPATH -name requirements.txt | xargs -L 1 $BASEPATH/venv/bin/pip install -r > /dev/null 2>&1
- echo "venv changed"
- fi
- #
- # Update venv modules
- #
- for req_mod in $($BASEPATH/venv/bin/pip list --format=json | jq -r '.[] | .name'); do
- $BASEPATH/venv/bin/pip install -U $req_mod | grep install > /dev/null 2>&1
- if [[ "$?" -eq "0" ]]; then
- echo $req_mod changed
- fi
-
- done
- #|xargs -n1 $BASEPATH/venv/bin/pip install -U
|