mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-04-17 12:45:52 +00:00
Fix edge cases in install scripts
This commit is contained in:
parent
0684f784ea
commit
9041cfc6a9
2 changed files with 3 additions and 1 deletions
|
|
@ -1,7 +1,7 @@
|
|||
#!/bin/sh
|
||||
echo "The shell is $SHELL"
|
||||
set -e
|
||||
[ -n "$DAV_SERVER" ] || DAV_SERVER=radicale_filesystem
|
||||
[ -n "$DAV_SERVER" ] || DAV_SERVER=radicale
|
||||
[ -n "$REQUIREMENTS" ] || REQUIREMENTS=release
|
||||
TESTSERVER_BASE=./tests/storage/dav/servers/
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
#!/bin/sh
|
||||
set -e
|
||||
[ -n "$REQUIREMENTS" ] || export REQUIREMENTS=release
|
||||
[ -n "$RADICALE_BACKEND" ] || export RADICALE_BACKEND=filesystem
|
||||
|
||||
if [ "$REQUIREMENTS" = "release" ]; then
|
||||
radicale_pkg="radicale"
|
||||
|
|
|
|||
Loading…
Reference in a new issue