From 7509d4e0849d98b98625f7e825d29838ae84031d Mon Sep 17 00:00:00 2001 From: Travis Truman Date: Fri, 19 Aug 2016 15:16:31 -0400 Subject: [PATCH] Remove apt update from Vagrantfile Its now done in run_tests.sh which is run by the Vagrant provisioner Change-Id: I454f91c818ae97bcb892bdfd24daa95a0a0cbb62 --- Vagrantfile | 1 - 1 file changed, 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index f989614..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