From c632d3d776b3f7573c6e326461f66160320dfdf4 Mon Sep 17 00:00:00 2001 From: Tagada <36127788+Tagadda@users.noreply.github.com> Date: Sat, 23 Sep 2023 10:51:57 +0200 Subject: [PATCH] fix config.toml expecting true/false instead of 1/0 --- scripts/_common.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/scripts/_common.sh b/scripts/_common.sh index 944a65e..bee1111 100644 --- a/scripts/_common.sh +++ b/scripts/_common.sh @@ -4,6 +4,12 @@ # COMMON VARIABLES #================================================= +if [ "$registration" -eq 1 ]; then + registration="true" +else + registration="false" +fi + #================================================= # PERSONAL HELPERS #=================================================