From 2e701e7dd57baaecc047fcc1d2a359d3be7ceaae Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Tue, 21 May 2024 07:59:36 +0100 Subject: [PATCH] Fix `app:generate` command Without this commit, I get this error: > Unable to find template "common/.githooks/prepare-commit-msg.twig" (looked into: phar:///home/opdavies/Code/personal/build-configs/nix-derivation/dist/build-configs/templates). I don't know why this isn't added by the `templates` value that's already there, but adding `templates/common/.githooks` explicitly fixes the error when running the `app:generate` command. --- box.json.dist | 1 + 1 file changed, 1 insertion(+) diff --git a/box.json.dist b/box.json.dist index 49baabd..59f85f7 100644 --- a/box.json.dist +++ b/box.json.dist @@ -9,6 +9,7 @@ "config", "resources", "templates", + "templates/common/.githooks", "var" ], "force-autodiscovery": true,