diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2017-11-21 09:26:47 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2017-11-21 09:26:47 -0200 |
commit | 077470e7699898858e21b809a502f8e77d2fad6f (patch) | |
tree | 27f83545510bd8876e819565f9cc8c92c548e214 | |
parent | fb8d224e7d9765c50508a69f98710d4ad191205f (diff) | |
download | templater-077470e7699898858e21b809a502f8e77d2fad6f.tar.gz templater-077470e7699898858e21b809a502f8e77d2fad6f.tar.bz2 |
Drupal 8: minor makefile fixes
-rw-r--r-- | share/templater/drupal8/files/Makefile.drupal8 | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/share/templater/drupal8/files/Makefile.drupal8 b/share/templater/drupal8/files/Makefile.drupal8 index 2dfdcbc..6047707 100644 --- a/share/templater/drupal8/files/Makefile.drupal8 +++ b/share/templater/drupal8/files/Makefile.drupal8 @@ -36,13 +36,15 @@ submodules: # Setup the virtual machine using vagrant vagrant: vagrant up - echo '( cd /srv/kvmx && make drush )' | vagrant ssh + echo '( cd /srv/shared && make drush )' | vagrant ssh + echo '( cd /srv/shared && make settings )' | vagrant ssh #vagrant ssh -c "$(DRUSH) pm-enable devel -y" # Setup the virtual machine using kvmx kvmx: kvmx provision - echo '( cd /srv/kvmx && make drush )' | kvmx ssh + echo '( cd /srv/shared && make drush )' | kvmx ssh + echo '( cd /srv/shared && make settings )' | kvmx ssh #kvmx ssh "$(DRUSH) pm-enable devel -y" # Old target |