mirror of
https://github.com/Aider-AI/aider
synced 2026-04-25 17:15:07 +02:00
9 lines
220 B
Bash
Executable File
9 lines
220 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# exit when any command fails
|
|
set -e
|
|
|
|
# Use first argument as version if provided, otherwise default to v0.1.0
|
|
VERSION=${1:-v0.1.0}
|
|
./scripts/blame.py "$VERSION" --all --output aider/website/_data/blame.yml
|