mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-20 04:14:59 +00:00
18 lines
344 B
Bash
Executable file
18 lines
344 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# exit when any command fails
|
|
set -e
|
|
|
|
pip-compile \
|
|
requirements/requirements.in \
|
|
--output-file=requirements.txt \
|
|
$1
|
|
|
|
for SUFFIX in dev help browser playwright; do
|
|
|
|
pip-compile \
|
|
requirements/requirements-${SUFFIX}.in \
|
|
--output-file=requirements/requirements-${SUFFIX}.txt \
|
|
$1
|
|
done
|
|
|