aboutsummaryrefslogtreecommitdiff
path: root/build/scripts/complement-cmd.sh
diff options
context:
space:
mode:
Diffstat (limited to 'build/scripts/complement-cmd.sh')
-rwxr-xr-xbuild/scripts/complement-cmd.sh8
1 files changed, 3 insertions, 5 deletions
diff --git a/build/scripts/complement-cmd.sh b/build/scripts/complement-cmd.sh
index def091e2..52b063d0 100755
--- a/build/scripts/complement-cmd.sh
+++ b/build/scripts/complement-cmd.sh
@@ -4,19 +4,17 @@
if [[ "${COVER}" -eq 1 ]]; then
echo "Running with coverage"
- exec /dendrite/dendrite-monolith-server-cover \
+ exec /dendrite/dendrite-cover \
--really-enable-open-registration \
--tls-cert server.crt \
--tls-key server.key \
--config dendrite.yaml \
- -api=${API:-0} \
--test.coverprofile=complementcover.log
else
echo "Not running with coverage"
- exec /dendrite/dendrite-monolith-server \
+ exec /dendrite/dendrite \
--really-enable-open-registration \
--tls-cert server.crt \
--tls-key server.key \
- --config dendrite.yaml \
- -api=${API:-0}
+ --config dendrite.yaml
fi