From 1819fa9a97312bc85c0c4d74d055fd24ca717358 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Wed, 12 Apr 2023 22:45:56 +0100 Subject: [PATCH] refactor(justfile): split onto multiple lines --- templates/justfile.twig | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/templates/justfile.twig b/templates/justfile.twig index e8ba649..48079f0 100644 --- a/templates/justfile.twig +++ b/templates/justfile.twig @@ -53,4 +53,9 @@ _exec +args: {{ "docker compose exec {{ args }}" | raw }} _run service command *args: - {{ "docker compose run --rm --no-deps --entrypoint {{ command }} --tty {{ service }} {{ args }}" | raw }} + docker compose run \ + --entrypoint {{ "{{ command }}"|raw }} \ + --no-deps \ + --rm \ + --tty \ + {{ "{{ service }} {{ args }}"|raw }}