mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-19 20:05:00 +00:00
8 lines
220 B
Bash
Executable file
8 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
|