mirror of
https://github.com/Monadical-SAS/reflector.git
synced 2025-12-20 12:19:06 +00:00
12 lines
259 B
Bash
Executable File
12 lines
259 B
Bash
Executable File
#!/bin/sh
|
|
|
|
pip install --upgrade pip
|
|
|
|
cwd=$(pwd)
|
|
last_component="${cwd##*/}"
|
|
if [ "$last_component" = "reflector" ]; then
|
|
pip install -r server-requirements.txt
|
|
elif [ "$last_component" = "scripts" ]; then
|
|
pip install -r ../server-requirements.txt
|
|
fi
|