From adcf2693956ea2121e091386bfe33d76c5b6d951 Mon Sep 17 00:00:00 2001 From: technofab Date: Thu, 21 Aug 2025 13:21:54 +0200 Subject: [PATCH] fix: PRJ_ROOT correctly points to project root, not state dir --- direnvrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/direnvrc b/direnvrc index 96a91e8..aa028e7 100644 --- a/direnvrc +++ b/direnvrc @@ -142,7 +142,7 @@ __ren_init_project() { # we explicitly don't want any dirs to be in the project dir, put them all # in .ren, so they don't clutter everything up __ren_init_prj_spec() { - export PRJ_ROOT=${PRJ_ROOT:="${REN_STATE}"} + export PRJ_ROOT=${PRJ_ROOT:="${REN_ROOT}"} export PRJ_CONFIG_HOME=${PRJ_CONFIG_HOME:="${REN_STATE}/config"} mkdir -p "${PRJ_CONFIG_HOME}"