Remove apt update from Vagrantfile

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

Change-Id: I454f91c818ae97bcb892bdfd24daa95a0a0cbb62
This commit is contained in:
Travis Truman 2016-08-19 15:16:31 -04:00
parent 959b8d6be0
commit 7509d4e084
1 changed files with 0 additions and 1 deletions

1
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