From d04169a0d8a196e442fc68a5438bb915d6e8f3e4 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Wed, 8 Mar 2023 21:08:56 +0000 Subject: [PATCH] feat(justfile): add an `install` recipe Fixes #26 --- templates/justfile.twig | 3 +++ 1 file changed, 3 insertions(+) diff --git a/templates/justfile.twig b/templates/justfile.twig index be5734b..9f1c390 100644 --- a/templates/justfile.twig +++ b/templates/justfile.twig @@ -9,6 +9,9 @@ composer *args: {% if "drupal-project" is same as type %} drush *args: {{ "just _exec php drush {{ args }}" | raw }} + +install *args: + just _exec php drush site:install -y {{ args }} {% endif %} _exec +args: