Commit 524d169e15c49322d4d2422a6927a29c6f443775
1 parent
8ac2ef16
Exists in
master
and in
1 other branch
Ajuste na ordem de execução dos comandos do Vagrantfile
Showing
1 changed file
with
4 additions
and
2 deletions
Show diff stats
Vagrantfile
... | ... | @@ -7,12 +7,14 @@ require 'ffi' |
7 | 7 | VAGRANTFILE_API_VERSION = "2" |
8 | 8 | |
9 | 9 | $firstTimeScript = <<SCRIPT |
10 | +apt-get update | |
11 | +apt-get install -y subversion | |
12 | +composer self-update | |
13 | + | |
10 | 14 | cd /vagrant |
11 | 15 | composer update |
12 | 16 | npm install |
13 | 17 | ./node_modules/.bin/gulp |
14 | -apt-get update | |
15 | -apt-get install -y subversion | |
16 | 18 | service apache2 start |
17 | 19 | service mysql start |
18 | 20 | ... | ... |