mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-04-09 11:26:00 +00:00
12 lines
330 B
Bash
12 lines
330 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
if [ "$REQUIREMENTS" = "release" ] || [ "$REQUIREMENTS" = "minimal" ]; then
|
|
radicale_pkg="radicale==2.1.10"
|
|
elif [ "$REQUIREMENTS" = "devel" ]; then
|
|
radicale_pkg="git+https://github.com/Kozea/Radicale.git"
|
|
else
|
|
echo "Invalid requirements envvar"
|
|
false
|
|
fi
|
|
pip install wsgi_intercept $radicale_pkg
|