17 lines
367 B
Bash
17 lines
367 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
cd "`dirname "$0"`"/..
|
||
|
|
||
|
if [ ! -f venv/bin/pip-compile ]; then
|
||
|
venv/bin/pip install pip-tools
|
||
|
fi
|
||
|
|
||
|
cat <<EOF > requirements.txt
|
||
|
#
|
||
|
# This file is autogenerated. To update, run:
|
||
|
# tools/update_requirements.sh
|
||
|
#
|
||
|
EOF
|
||
|
venv/bin/pip-compile --quiet --generate-hashes --annotate --no-header --output-file="-" >> requirements.txt
|
||
|
echo "Updated requirements.txt"
|