mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-04-27 14:57:41 +00:00
14 lines
372 B
Bash
14 lines
372 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
pip install wsgi_intercept
|
|
|
|
if [ "$REQUIREMENTS" = "release" ] || [ "$REQUIREMENTS" = "minimal" ]; then
|
|
# XXX: This is the last version to support Python 3.5
|
|
pip install -U "xandikos==0.1.0"
|
|
elif [ "$REQUIREMENTS" = "devel" ]; then
|
|
pip install -U git+https://github.com/jelmer/xandikos
|
|
else
|
|
echo "Invalid REQUIREMENTS value"
|
|
false
|
|
fi
|