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,12 +7,14 @@ require 'ffi' | ||
7 | VAGRANTFILE_API_VERSION = "2" | 7 | VAGRANTFILE_API_VERSION = "2" |
8 | 8 | ||
9 | $firstTimeScript = <<SCRIPT | 9 | $firstTimeScript = <<SCRIPT |
10 | +apt-get update | ||
11 | +apt-get install -y subversion | ||
12 | +composer self-update | ||
13 | + | ||
10 | cd /vagrant | 14 | cd /vagrant |
11 | composer update | 15 | composer update |
12 | npm install | 16 | npm install |
13 | ./node_modules/.bin/gulp | 17 | ./node_modules/.bin/gulp |
14 | -apt-get update | ||
15 | -apt-get install -y subversion | ||
16 | service apache2 start | 18 | service apache2 start |
17 | service mysql start | 19 | service mysql start |
18 | 20 |