From 9b35fa1d391c103ed0e859f817c8b46a427cc33b Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Fri, 2 Jun 2017 06:12:30 +0200 Subject: [PATCH] vagrant: update cleaning --- Vagrantfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index 3655eb2b2..e71861098 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -269,10 +269,10 @@ def install_borg(fuse) pip install -U wheel # upgrade wheel, too old for 3.5 cd borg # clean up (wrong/outdated) stuff we likely got via rsync: - rm -f borg/*.so borg/*.cpy* - rm -f borg/{chunker,crypto,compress,hashindex,platform_linux}.c - rm -rf borg/__pycache__ borg/support/__pycache__ borg/testsuite/__pycache__ + rm -rf __pycache__ + find src -name '__pycache__' -exec rm -rf {} \; pip install -r requirements.d/development.txt + python setup.py clean EOF if fuse script += <<-EOF