From af79a7c09cc907778a98e5c8dbf087b09c97ec72 Mon Sep 17 00:00:00 2001 From: Jacob Babor Date: Tue, 19 Aug 2025 17:45:48 -0500 Subject: [PATCH] Use less stepped-on env file location for proj --- base/.functions | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/.functions b/base/.functions index 6104159e..03393a5e 100644 --- a/base/.functions +++ b/base/.functions @@ -21,7 +21,7 @@ proj() { cd "$projdir" || return 50 # Run code if we have it # The fun part is this environment file can access some vars about the proj - local envfile="$projdir/.env" + local envfile="$projdir/.project-env" if [ -r "$envfile" ]; then . "$envfile" echo "Sourced environment file for project"