mirror of
https://github.com/msitarzewski/agency-agents
synced 2026-04-25 03:08:24 +00:00
Merge pull request #186 from msitarzewski/fix/convert-single-file-output-isolation
Fix convert.sh single-file output cross-contamination
This commit is contained in:
commit
fa3c12417a
@ -456,16 +456,6 @@ run_conversions() {
|
||||
echo "$count"
|
||||
}
|
||||
|
||||
write_single_file_outputs() {
|
||||
# Aider
|
||||
mkdir -p "$OUT_DIR/aider"
|
||||
cp "$AIDER_TMP" "$OUT_DIR/aider/CONVENTIONS.md"
|
||||
|
||||
# Windsurf
|
||||
mkdir -p "$OUT_DIR/windsurf"
|
||||
cp "$WINDSURF_TMP" "$OUT_DIR/windsurf/.windsurfrules"
|
||||
}
|
||||
|
||||
# --- Entry point ---
|
||||
|
||||
main() {
|
||||
@ -524,9 +514,14 @@ HEREDOC
|
||||
done
|
||||
|
||||
# Write single-file outputs after accumulation
|
||||
if [[ "$tool" == "all" || "$tool" == "aider" || "$tool" == "windsurf" ]]; then
|
||||
write_single_file_outputs
|
||||
if [[ "$tool" == "all" || "$tool" == "aider" ]]; then
|
||||
mkdir -p "$OUT_DIR/aider"
|
||||
cp "$AIDER_TMP" "$OUT_DIR/aider/CONVENTIONS.md"
|
||||
info "Wrote integrations/aider/CONVENTIONS.md"
|
||||
fi
|
||||
if [[ "$tool" == "all" || "$tool" == "windsurf" ]]; then
|
||||
mkdir -p "$OUT_DIR/windsurf"
|
||||
cp "$WINDSURF_TMP" "$OUT_DIR/windsurf/.windsurfrules"
|
||||
info "Wrote integrations/windsurf/.windsurfrules"
|
||||
fi
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user