mirror of
https://github.com/borgbackup/borg.git
synced 2024-12-23 16:26:29 +00:00
Vagrantfile: backslash needs escaping
This commit is contained in:
parent
148a8a855b
commit
a6dc6b611b
1 changed files with 1 additions and 1 deletions
2
Vagrantfile
vendored
2
Vagrantfile
vendored
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue