Remove apt update from Vagrantfile

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

Change-Id: Ic25355c42cd39c84fb9e8b24cf621341188682cb
This commit is contained in:
Travis Truman 2016-08-19 15:08:54 -04:00
parent 768d5752ad
commit c3a48d5efe
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