浏览代码

Vagrantfile: backslash needs escaping

Thomas Waldmann 8 年之前
父节点
当前提交
a6dc6b611b
共有 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