From 25772d512f9140bbfa18dce99ad95caf5ea5cb43 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Fri, 10 Mar 2023 23:16:11 +0000 Subject: [PATCH] fix: missing args from the `install` recipe --- templates/justfile.twig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/justfile.twig b/templates/justfile.twig index 59111e7..fc08c67 100644 --- a/templates/justfile.twig +++ b/templates/justfile.twig @@ -13,7 +13,7 @@ drush *args: {{ "just _exec php drush {{ args }}" | raw }} install *args: - just _exec php drush site:install -y {{ args }} + {{ "just _exec php drush site:install -y {{ args }}" | raw }} {% endif %} _exec +args: