Remove apt-get update from Vagrantfile

It is already performed in run_tests.sh

Change-Id: I453bc66d2c59511238ba4d2bd8054c54e6cdbd64
This commit is contained in:
Travis Truman 2016-09-12 14:40:59 -04:00
parent 6c33995f3b
commit f8751bc191
1 changed files with 0 additions and 1 deletions

1
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