From 28068ed36db17ef9ea741365717511db9f1af2cd Mon Sep 17 00:00:00 2001 From: "Justin C. Miller" Date: Sat, 28 Aug 2021 17:26:43 -0700 Subject: [PATCH] [build] Fix configure using relative root path The `configure` script needs to use an absolute path, or ninja can sometimes break. --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 25c6284..2576255 100755 --- a/configure +++ b/configure @@ -6,7 +6,7 @@ def generate(output, config, manifest): from bonnibel.module import Module from bonnibel.project import Project - root = Path(__file__).parent + root = Path(__file__).parent.resolve() project = Project(root) output = root / output