Module spotify_state -> mqtt
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.
12345678 |
- #!/bin/sh
- #
- BASEPATH=`realpath $(dirname $0)`
-
- python3 -m venv $BASEPATH/venv
- $BASEPATH/venv/bin/pip install --upgrade pip
- find $BASEPATH -name requirements.txt | xargs -L 1 $BASEPATH/venv/bin/pip install -r
- $BASEPATH/venv/bin/pip list --outdated --format=json | jq -r '.[] | .name'|xargs -n1 $BASEPATH/venv/bin/pip install -U
|