From 3300fef7f12f77475baf268fbb686477917d637b Mon Sep 17 00:00:00 2001 From: Paul Payne Date: Sat, 28 Jun 2025 09:41:57 -0700 Subject: [PATCH] Remove fallback to current directory in init_wild_env function --- bin/wild-common.sh | 4 ---- 1 file changed, 4 deletions(-) diff --git a/bin/wild-common.sh b/bin/wild-common.sh index cfee2d8..00df2b5 100644 --- a/bin/wild-common.sh +++ b/bin/wild-common.sh @@ -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 }