mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-04-08 11:15:52 +00:00
14 lines
328 B
Bash
14 lines
328 B
Bash
pip install -r requirements.txt
|
|
[[ -z "$DAV_SERVER" ]] && DAV_SERVER=radicale
|
|
case "$DAV_SERVER" in
|
|
"radicale")
|
|
pip install radicale
|
|
;;
|
|
"radicale-git")
|
|
pip install git+https://github.com/Kozea/Radicale.git
|
|
;;
|
|
*)
|
|
echo "$DAV_SERVER is not known."
|
|
exit 1
|
|
;;
|
|
esac
|