Remove apt update from Vagrantfile

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

Change-Id: I8b419eea1e60210242fe8d382caee8b2880a9f42
This commit is contained in:
Travis Truman 2016-08-19 15:24:06 -04:00
parent 4f76e2cb8c
commit 173cc07866
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