mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-04-03 10:25:51 +00:00
13 lines
217 B
Bash
13 lines
217 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
if [ -z "$RADICALE_BACKEND" ]; then
|
|
echo "Missing RADICALE_BACKEND"
|
|
false
|
|
fi
|
|
|
|
pip install wsgi_intercept radicale
|
|
|
|
if [ "$RADICALE_BACKEND" = "database" ]; then
|
|
pip install sqlalchemy
|
|
fi
|