소스 검색

Merge pull request #2664 from ThomasWaldmann/vagrant-fix

Vagrantfile: backslash needs escaping
TW 8 년 전
부모
커밋
99b28a005a
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      Vagrantfile

+ 1 - 1
Vagrantfile

@@ -270,7 +270,7 @@ def install_borg(fuse)
     cd borg
     # clean up (wrong/outdated) stuff we likely got via rsync:
     rm -rf __pycache__
-    find src -name '__pycache__' -exec rm -rf {} \;
+    find src -name '__pycache__' -exec rm -rf {} \\;
     pip install -r requirements.d/development.txt
     python setup.py clean
   EOF