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