From a86b4a0cdaabf92a28124ed1d18bd37ef3051635 Mon Sep 17 00:00:00 2001 From: Hans Dijkema Date: Thu, 13 Nov 2025 09:14:40 +0100 Subject: [PATCH] A little more clear what os isn't supported. Signed-off-by: Hans Dijkema --- private/webui-wire-download.rkt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/private/webui-wire-download.rkt b/private/webui-wire-download.rkt index 034e99c..cc52441 100644 --- a/private/webui-wire-download.rkt +++ b/private/webui-wire-download.rkt @@ -58,7 +58,9 @@ (let ((os (system-type 'os*))) (if (eq? os 'linux) (webui-wire-exists-linux?) - (error "Currently not implemented for other systems than Linux") + (error + (format + "Currently not implemented operating system '~a'" os)) ) ) )