Remove fallback to current directory in init_wild_env function

This commit is contained in:
2025-06-28 09:41:57 -07:00
parent bcccb150e3
commit 3300fef7f1

View File

@@ -157,10 +157,6 @@ init_wild_env() {
if found_home="$(find_wc_home)"; then
WC_HOME="$found_home"
export WC_HOME
else
# If no .wildcloud directory found, default to current directory
WC_HOME="$(pwd)"
export WC_HOME
fi
fi
}