Changes to Centos bootstrap to remove ~/git/vpp if it exists before attempting clone
[vpp.git] / build-root / vagrant / bootstrap.centos7.sh
index 1d811e4..f55e68a 100644 (file)
@@ -28,7 +28,8 @@ cd ~vagrant/
 sudo -u vagrant mkdir git
 cd git/
 
-# You will need to alter this line to reflect reality.
+# Check if git exists and remove it before attempting clone, else clone ineffective when "reload --provision"
+[ -d vpp ] && rm -rf vpp
 sudo -H -u vagrant git clone /vpp
 cd vpp