From 5c6f136f356b48fcb9ed5e50beeb8b732170b7c1 Mon Sep 17 00:00:00 2001 From: ColumbusAI <75283809+ColumbusAI@users.noreply.github.com> Date: Sun, 16 Feb 2025 15:50:36 -0800 Subject: [PATCH] Update start_aider.sh - fix location of aider config files aider config files are located in /home/appuser as specified by the docker config, not in /root. Fixed in this PR. --- aider/start_aider.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aider/start_aider.sh b/aider/start_aider.sh index 5b5898c..f5a069a 100755 --- a/aider/start_aider.sh +++ b/aider/start_aider.sh @@ -7,10 +7,10 @@ echo "Harbor: custom aider entrypoint" python --version echo "YAML Merger is starting..." -python /root/.aider/yaml_config_merger.py --pattern ".yml" --output "/root/.aider.conf.yml" --directory "/root/.aider" +python /home/appuser/.aider/yaml_config_merger.py --pattern ".yml" --output "/home/appuser/.aider.conf.yml" --directory "/home/appuser/.aider" echo "Merged Configs:" -cat /root/.aider.conf.yml +cat /home/appuser/.aider.conf.yml git config --global --add safe.directory /root/workspace