mirror of
https://github.com/etienne-hd/lbc-finder.git
synced 2026-04-15 14:05:35 +02:00
7 lines
120 B
Bash
7 lines
120 B
Bash
#!/bin/sh
|
|
if [ -e config/requirements.txt ]
|
|
then
|
|
pip install --no-cache-dir -r config/requirements.txt
|
|
fi
|
|
|
|
exec "$@" |