claude-evolve 1.6.25 → 1.6.26
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/config.sh +3 -0
- package/package.json +1 -1
package/lib/config.sh
CHANGED
|
@@ -233,6 +233,8 @@ load_config() {
|
|
|
233
233
|
# Load global config (overrides local config)
|
|
234
234
|
local global_config_file="$HOME/.config/claude-evolve/config.yaml"
|
|
235
235
|
_load_yaml_config "$global_config_file"
|
|
236
|
+
|
|
237
|
+
echo "[DEBUG] EVOLUTION_DIR before FULL_EVOLUTION_DIR calculation: $EVOLUTION_DIR" >&2
|
|
236
238
|
|
|
237
239
|
# Create full paths - ALL paths are relative to EVOLUTION_DIR
|
|
238
240
|
# Make EVOLUTION_DIR absolute if it's relative
|
|
@@ -252,6 +254,7 @@ load_config() {
|
|
|
252
254
|
else
|
|
253
255
|
FULL_OUTPUT_DIR="$FULL_EVOLUTION_DIR"
|
|
254
256
|
fi
|
|
257
|
+
echo "[DEBUG] FULL_EVOLUTION_DIR at end of load_config: $FULL_EVOLUTION_DIR" >&2
|
|
255
258
|
}
|
|
256
259
|
|
|
257
260
|
# Validate configuration
|