From 20c36b652c0579032fb409930fca6f4ffe1b5135 Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Sun, 23 Mar 2025 17:27:22 +0100 Subject: [PATCH] vagrant: build binaries with borgstore[sftp], fixes #8574 --- Vagrantfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Vagrantfile b/Vagrantfile index 35810add2..cc4cdb274 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -247,6 +247,9 @@ def install_borg(fuse) cd borg pip install -r requirements.d/development.lock.txt python3 scripts/make.py clean + # install borgstore WITH sftp support, so it pulls in paramiko also, + # so sftp support will also get into the binaries built. #8574 + pip install borgstore[sftp] pip install -e .[#{fuse}] EOF end