update abra

This commit is contained in:
2025-11-04 18:16:24 +01:00
parent 1bcee5206c
commit f49a01f58a
2 changed files with 4 additions and 2 deletions

2
abra

Submodule abra updated: 2fbef41a3a...1c4abcf12f

View File

@ -6,13 +6,15 @@ VENV_PATH=$SCRIPT_DIR/.venv
# check if venv exists
if [ ! -d $VENV_PATH -o "$1" == "install" ]; then
git pull
git pull --recurse-submodules
echo install virtual environment: $VENV_PATH
rm -rf $VENV_PATH
python3 -m venv $VENV_PATH
source $VENV_PATH/bin/activate
pip3 install -r $SCRIPT_DIR/requirements.txt
deactivate
cd abra
make install-abra
exit 0
fi