From f9f14624996881c7a1cdd5084c64addc392e7442 Mon Sep 17 00:00:00 2001 From: Spencer Brower Date: Tue, 28 Oct 2025 15:02:55 -0400 Subject: [PATCH] fix: Fixed pathing issue with age. --- mod.nu | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mod.nu b/mod.nu index 078a0e6..fc46aba 100755 --- a/mod.nu +++ b/mod.nu @@ -43,7 +43,8 @@ def "open db" [] { } else { # Open the db let dec = mktemp -p ~/.envr; - age -d -i ((envr config show).priv_key | path expand) $db_path | save -f $dec + let priv_key = ((envr config show).priv_key | path expand); + age -d -i $priv_key ($db_path | path expand) | save -f $dec stor import -f $dec rm $dec }