From fe65ef988f97fe1b9aeba758e075805a4e859e7c Mon Sep 17 00:00:00 2001 From: Lubomir Dolezal <lubomir.bucek@eox.at> Date: Fri, 26 Aug 2022 11:33:36 +0200 Subject: [PATCH] fix: reflect cli change in run script --- run-registrar.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/run-registrar.sh b/run-registrar.sh index 069213d..187e5f2 100755 --- a/run-registrar.sh +++ b/run-registrar.sh @@ -5,6 +5,9 @@ replace="" if test "$REGISTRAR_REPLACE" = true; then replace="--replace" fi +if test "$REGISTRAR_REPLACE" = false; then + replace="--no-replace" +fi debug="--no-debug" if test "$DEBUG" = true; then -- GitLab