Remove apt update from Vagrantfile

Its now done in run_tests.sh which is run by the
Vagrant provisioner

Change-Id: Iec89c33d0c6a00c9347ee3f00f9b0c01f3068631
This commit is contained in:
Travis Truman
2016-08-19 15:06:57 -04:00
parent c3e25d7962
commit 1646329b95

3
Vagrantfile vendored
View File

@@ -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
end