Vagrantfile: backslash needs escaping

This commit is contained in:
Thomas Waldmann 2017-06-12 03:04:31 +02:00
parent 148a8a855b
commit a6dc6b611b
1 changed files with 1 additions and 1 deletions

2
Vagrantfile vendored
View File

@ -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