From 2edec51c5eabeef6d7d9e1cbae2b2be379aaa6b8 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Sun, 5 May 2019 22:41:11 -0400 Subject: build: go-build-system: Follow-up commit. There was an extraneous pair of parens in commit 7e84d3eef7. Thanks for Mark Weaver for reporting the issue. * guix/build/go-build-system.scm (unpack): Remove the extraneous pair of parentheses surrounding the `display' function call. --- guix/build/go-build-system.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'guix') diff --git a/guix/build/go-build-system.scm b/guix/build/go-build-system.scm index d106e70d35..22427a80b3 100644 --- a/guix/build/go-build-system.scm +++ b/guix/build/go-build-system.scm @@ -179,7 +179,7 @@ unpacking." (delete-file-recursively scratch-dir))) (when (string-null? import-path) - ((display "WARNING: The Go import path is unset.\n"))) + (display "WARNING: The Go import path is unset.\n")) (when (string-null? unpack-path) (set! unpack-path import-path)) (let ((dest (string-append (getenv "GOPATH") "/src/" unpack-path))) -- cgit v1.2.3