mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-20 04:14:59 +00:00
21 lines
424 B
Bash
Executable file
21 lines
424 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# exit when any command fails
|
|
set -e
|
|
|
|
if [ -z "$1" ]; then
|
|
ARG=-r
|
|
else
|
|
ARG=$1
|
|
fi
|
|
|
|
# README.md before index.md, because index.md uses cog to include README.md
|
|
cog $ARG \
|
|
README.md \
|
|
website/index.md \
|
|
website/HISTORY.md \
|
|
website/docs/commands.md \
|
|
website/docs/languages.md \
|
|
website/docs/config/dotenv.md \
|
|
website/docs/config/options.md \
|
|
website/docs/config/aider_conf.md
|