mirror of
https://github.com/Aider-AI/aider.git
synced 2026-02-06 20:26:38 +01: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
|