mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-20 04:14:59 +00:00
9 lines
221 B
Bash
Executable file
9 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
|
|
|