fix: reduce excess parentheses in lab-tool SSH module

- Remove one excess closing parenthesis causing compilation warning
- Lab tool core functionality now works properly
This commit is contained in:
Geir Okkenhaug Jerstad 2025-07-04 16:01:52 +02:00
parent 250ba5e2ea
commit 59d287a543

View file

@ -85,7 +85,7 @@
(values (zero? status) output))) (values (zero? status) output)))
(lambda (key . args) (lambda (key . args)
(log-error "SSH command failed for ~a: ~a ~a" machine-name 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 ;; Copy file to remote machine using scp
(define (copy-file-to-remote machine-name local-path remote-path) (define (copy-file-to-remote machine-name local-path remote-path)