diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2017-10-28 08:24:17 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2017-10-28 08:24:17 -0200 |
commit | 75033b2ca3a177908c464d970860074813fc642a (patch) | |
tree | 92cee12366d8fa60c4ae695a4132bc17f068984f /share/drupal8 | |
parent | c82747bd9dc07346a5a22513f966b602a1a17b6c (diff) | |
download | templater-75033b2ca3a177908c464d970860074813fc642a.tar.gz templater-75033b2ca3a177908c464d970860074813fc642a.tar.bz2 |
Drupal 8: Makefile: comment old targets
Diffstat (limited to 'share/drupal8')
-rw-r--r-- | share/drupal8/Makefile | 27 |
1 files changed, 15 insertions, 12 deletions
diff --git a/share/drupal8/Makefile b/share/drupal8/Makefile index 3b005a9..ae9be20 100644 --- a/share/drupal8/Makefile +++ b/share/drupal8/Makefile @@ -24,8 +24,9 @@ develop: submodules kvmx #vagrant ssh -c "$(DRUSH) pm-enable devel -y" kvmx ssh "$(DRUSH) pm-enable devel -y" +# Old target # Install the platform -platform: drupal drush settings symlinks initdb cache +#platform: drupal drush settings symlinks initdb cache # Keep code in sync sync-code: update drush cache import @@ -44,23 +45,25 @@ kvmx: kvmx up kvmx provision +# Old target # Download drupal, setup folder structure and config file # # You might want to use "-n" to avoid _drush_recursive_copy cpu hog if previous # installation already exists when using 9p filesystem -drupal: - #rm -rf $(DESTDIR)/drupal-$(CORE)* && drush pm-download -y -v drupal-$(CORE) --destination=/tmp/drupal && mv /tmp/drupal/drupal-$(CORE).* $(DESTDIR)/ - #drush pm-download -y -v drupal-$(CORE) --destination=$(DESTDIR) - #( cd $(DRUPAL)/.. && ln -s drupal-$(CORE).* drupal-$(CORE) ) - BASE=$(DESTDIR) drupal download $(CORE) +#drupal: +# #rm -rf $(DESTDIR)/drupal-$(CORE)* && drush pm-download -y -v drupal-$(CORE) --destination=/tmp/drupal && mv /tmp/drupal/drupal-$(CORE).* $(DESTDIR)/ +# #drush pm-download -y -v drupal-$(CORE) --destination=$(DESTDIR) +# #( cd $(DRUPAL)/.. && ln -s drupal-$(CORE).* drupal-$(CORE) ) +# BASE=$(DESTDIR) drupal download $(CORE) +# Old target # Make the needed symlinks -symlinks: - ln -sf -t $(DRUPAL)/sites/$(PROJECT)/ $(CWD)/files - ln -sf -t $(DRUPAL)/sites/$(PROJECT)/ $(CWD)/config - ln -sf -t $(DRUPAL)/sites/$(PROJECT)/ $(CWD)/themes - ln -sf -t $(DRUPAL)/sites/$(PROJECT)/ $(CWD)/modules - ln -sf -t $(DRUPAL)/sites/$(PROJECT)/ $(CWD)/libraries +#symlinks: +# ln -sf -t $(DRUPAL)/sites/$(PROJECT)/ $(CWD)/files +# ln -sf -t $(DRUPAL)/sites/$(PROJECT)/ $(CWD)/config +# ln -sf -t $(DRUPAL)/sites/$(PROJECT)/ $(CWD)/themes +# ln -sf -t $(DRUPAL)/sites/$(PROJECT)/ $(CWD)/modules +# ln -sf -t $(DRUPAL)/sites/$(PROJECT)/ $(CWD)/libraries # Default settings default_settings: |