mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-20 04:14:59 +00:00
16 lines
228 B
Bash
Executable file
16 lines
228 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# exit when any command fails
|
|
set -e
|
|
|
|
if [ -z "$1" ]; then
|
|
ARG=-r
|
|
else
|
|
ARG=$1
|
|
fi
|
|
|
|
cog $ARG \
|
|
website/index.md \
|
|
website/docs/commands.md \
|
|
website/docs/languages.md \
|
|
website/docs/options_ref.md
|