Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions modules/core_dev/manifests/build.pp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

# Run grunt to build the project.
exec { 'grunt build --dev':
command => '/usr/bin/grunt build --dev',
command => '/usr/bin/npm run build:dev',
cwd => '/vagrant/wordpress-develop',
user => 'vagrant',
require => [
Expand All @@ -30,7 +30,7 @@
}

exec { 'grunt build':
command => '/usr/bin/grunt build',
command => '/usr/bin/npm run build',
cwd => '/vagrant/wordpress-develop',
user => 'vagrant',
require => [
Expand Down