Skip to content
This repository was archived by the owner on May 15, 2025. It is now read-only.

Commit 3b4781d

Browse files
feat(aider): modify CONVENTIONS.md creation to use heredoc for improved readability of task reporting instructions
1 parent 82a68e7 commit 3b4781d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

aider/main.tf

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,9 @@ EOL
279279
280280
# Create a conventions file that instructs Aider to report tasks
281281
mkdir -p "${var.folder}"
282-
echo "${var.experiment_task_conventions}" > "${var.folder}/CONVENTIONS.md"
282+
cat > "${var.folder}/CONVENTIONS.md" << 'CONVENTIONS_EOF'
283+
${var.experiment_task_conventions}
284+
CONVENTIONS_EOF
283285
echo "Created CONVENTIONS.md file with task reporting instructions"
284286
fi
285287

0 commit comments

Comments
 (0)