1
0
mirror of https://github.com/taigrr/gopher-os synced 2025-01-18 04:43:13 -08:00

Merge pull request #56 from achilleasa/update-vagrantfile

vagrantfile: include gcc and binutils in the list of installed packages
This commit is contained in:
Achilleas Anagnostopoulos 2017-09-24 10:12:48 +01:00 committed by GitHub
commit 4e985c91c6

2
Vagrantfile vendored
View File

@ -17,7 +17,7 @@ Vagrant.configure("2") do |config|
config.vm.provision "shell", inline: <<-SHELL
apt-get update
apt-get install -y nasm make xorriso
apt-get install -y nasm make xorriso binutils gcc
[ ! -d "/usr/local/go" ] && wget -qO- https://storage.googleapis.com/golang/go1.8.3.linux-amd64.tar.gz | tar xz -C /usr/local
mkdir -p /home/vagrant/go/src
mkdir -p /home/vagrant/go/bin