From ecbd1924b151338c87568fce3fd9523c5e95c5ec Mon Sep 17 00:00:00 2001 From: Vladislav Nepogodin Date: Tue, 9 Aug 2022 21:50:20 +0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Adjust=20VagrantFile=20to=20clea?= =?UTF-8?q?nup=20the=20provision=20script?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Vagrantfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Vagrantfile b/Vagrantfile index a106a1e..52b8224 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -85,6 +85,9 @@ Vagrant.configure("2") do |config| # Save our current dir SAVED_DIR="$PWD" + # Remove repo if already exists + [ -d "new-cli-installer" ] && rm -rf "new-cli-installer" + # Clone our repo git clone https://github.com/cachyos/new-cli-installer.git cd new-cli-installer