소스 검색

vagrant: build binaries with borgstore[sftp], fixes #8574

Thomas Waldmann 2 달 전
부모
커밋
20c36b652c
1개의 변경된 파일3개의 추가작업 그리고 0개의 파일을 삭제
  1. 3 0
      Vagrantfile

+ 3 - 0
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