1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/borg_ynh.git synced 2024-09-03 18:16:05 +02:00

Update _common.sh

Explicitly install pkgconfig
This commit is contained in:
CodeShakingSheep 2024-08-10 14:00:09 -05:00 committed by Félix Piédallu
parent 98d524c1b1
commit 6ff4db7fdb

View file

@ -13,7 +13,8 @@ install_borg_with_pip () {
venvpy="$install_dir/venv/bin/python3"
ynh_exec_as "$app" "$venvpy" -m pip install --upgrade setuptools wheel
ynh_exec_as "$app" "$venvpy" -m pip install pkgconfig
BORG_VERSION=$(ynh_app_upstream_version)
ynh_exec_as "$app" "$venvpy" -m pip install borgbackup[pyfuse3]=="$BORG_VERSION"
}