mirror of
https://github.com/Aider-AI/aider
synced 2026-04-25 17:15:07 +02:00
10 lines
221 B
Bash
Executable File
10 lines
221 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# exit when any command fails
|
|
set -e
|
|
|
|
pip-compile requirements.in $1
|
|
pip-compile --output-file=requirements-dev.txt requirements-dev.in $1
|
|
pip-compile --output-file=requirements-hf.txt requirements-hf.in $1
|
|
|