From 1646329b95b6d462490e4f3a87b4f5c47e369095 Mon Sep 17 00:00:00 2001 From: Travis Truman Date: Fri, 19 Aug 2016 15:06:57 -0400 Subject: [PATCH] Remove apt update from Vagrantfile Its now done in run_tests.sh which is run by the Vagrant provisioner Change-Id: Iec89c33d0c6a00c9347ee3f00f9b0c01f3068631 --- Vagrantfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index cea04e3..44872e1 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -3,7 +3,6 @@ Vagrant.configure(2) do |config| config.vm.provision "shell", inline: <<-SHELL sudo su - cd /vagrant - apt-get update ./run_tests.sh SHELL -end \ No newline at end of file +end