Remove apt update from Vagrantfile

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

Change-Id: I7821dbda5985f9d6091ac987e19454f297a8389f
This commit is contained in:
Travis Truman 2016-08-19 15:14:47 -04:00
parent 57db3911fe
commit 0061c7713c
1 changed files with 1 additions and 2 deletions

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