From 848124e6df3629bf4cc1ef9a8ff38907bdaf4360 Mon Sep 17 00:00:00 2001 From: molese Date: Tue, 30 Nov 2021 12:37:36 +0600 Subject: [PATCH] src/default.scm: remove unnecessary not statement in system-hostname-check Signed-off-by: molese --- src/default.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/default.scm b/src/default.scm index c044063..3a10227 100644 --- a/src/default.scm +++ b/src/default.scm @@ -11,7 +11,7 @@ ; or if it's value is empty ;; FIXME-QA(Molese): Needs test (define system-hostname-check (lambda () - (if (not (eq nil (getenv "HOSTNAME"))) + (if (eq nil (getenv "HOSTNAME")) (throw 1 "Environment variable 'HOSTNAME' is not set, unable to apply sufficient configuration")) (if (eq? (getenv "HOSTNAME") #f) (throw 1 "Environment variable 'HOSTNAME' is empty, unable to apply sufficient configuration")))) -- 2.48.1