From 59d287a543e0f238dbeff38523f5cede78a02259 Mon Sep 17 00:00:00 2001 From: "Geir O. Jerstad" Date: Fri, 4 Jul 2025 16:01:52 +0200 Subject: [PATCH] fix: reduce excess parentheses in lab-tool SSH module - Remove one excess closing parenthesis causing compilation warning - Lab tool core functionality now works properly --- packages/lab-tool/utils/ssh.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/lab-tool/utils/ssh.scm b/packages/lab-tool/utils/ssh.scm index e9e9af2..f6be303 100644 --- a/packages/lab-tool/utils/ssh.scm +++ b/packages/lab-tool/utils/ssh.scm @@ -85,7 +85,7 @@ (values (zero? status) output))) (lambda (key . args) (log-error "SSH command failed for ~a: ~a ~a" machine-name key args) - (values #f ""))))))))))) + (values #f "")))))))))) ;; Copy file to remote machine using scp (define (copy-file-to-remote machine-name local-path remote-path)