1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2024-12-24 08:45:13 +00:00

Merge pull request #2664 from ThomasWaldmann/vagrant-fix

Vagrantfile: backslash needs escaping
This commit is contained in:
TW 2017-06-12 03:09:29 +02:00 committed by GitHub
commit 99b28a005a

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