From 7aa383d41c53faa2422601aacbd6103fe63e0d14 Mon Sep 17 00:00:00 2001 From: ljf Date: Tue, 30 Nov 2021 19:04:08 +0100 Subject: [PATCH] [enh] Avoid to rebuild borg at every upgrade --- scripts/_common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/_common.sh b/scripts/_common.sh index c77a961..699abd3 100644 --- a/scripts/_common.sh +++ b/scripts/_common.sh @@ -12,7 +12,7 @@ pkg_dependencies="python3-pip python3-dev libacl1-dev libssl-dev liblz4-dev pyth # Install borg with pip if borg is not here install_borg_with_pip () { if [ -d /opt/borg-env ]; then - /opt/borg-env/bin/python /opt/borg-env/bin/pip list | grep "Version: $BORG_VERSION" || ynh_secure_remove /opt/borg-env + /opt/borg-env/bin/python /opt/borg-env/bin/pip list | grep "borgbackup *$BORG_VERSION" || ynh_secure_remove /opt/borg-env fi if [ ! -d /opt/borg-env ]; then python3 -m venv /opt/borg-env