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