Remove apt update from Vagrantfile

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

Change-Id: I97b37683ed6843e0a9af64dcd990f7e8d6adcada
This commit is contained in:
Travis Truman 2016-08-19 15:40:40 -04:00
parent 97f7e37ef9
commit 33199fbdb8
1 changed files with 1 additions and 2 deletions

3
Vagrantfile vendored
View File

@ -7,7 +7,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