Use less stepped-on env file location for proj

This commit is contained in:
2025-08-19 17:45:48 -05:00
parent ade6aba195
commit af79a7c09c

View File

@@ -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"