mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-04-27 14:57:41 +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
|
#!/bin/sh
|
||||||
echo "The shell is $SHELL"
|
echo "The shell is $SHELL"
|
||||||
set -e
|
set -e
|
||||||
[ -n "$DAV_SERVER" ] || DAV_SERVER=radicale_filesystem
|
[ -n "$DAV_SERVER" ] || DAV_SERVER=radicale
|
||||||
[ -n "$REQUIREMENTS" ] || REQUIREMENTS=release
|
[ -n "$REQUIREMENTS" ] || REQUIREMENTS=release
|
||||||
TESTSERVER_BASE=./tests/storage/dav/servers/
|
TESTSERVER_BASE=./tests/storage/dav/servers/
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,7 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
set -e
|
set -e
|
||||||
|
[ -n "$REQUIREMENTS" ] || export REQUIREMENTS=release
|
||||||
|
[ -n "$RADICALE_BACKEND" ] || export RADICALE_BACKEND=filesystem
|
||||||
|
|
||||||
if [ "$REQUIREMENTS" = "release" ]; then
|
if [ "$REQUIREMENTS" = "release" ]; then
|
||||||
radicale_pkg="radicale"
|
radicale_pkg="radicale"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue