[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/01: build: go-build-system: Follow-up commit.
From: |
guix-commits |
Subject: |
01/01: build: go-build-system: Follow-up commit. |
Date: |
Sun, 5 May 2019 22:44:52 -0400 (EDT) |
apteryx pushed a commit to branch master
in repository guix.
commit 2edec51c5eabeef6d7d9e1cbae2b2be379aaa6b8
Author: Maxim Cournoyer <address@hidden>
Date: Sun May 5 22:41:11 2019 -0400
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(-)
diff --git a/guix/build/go-build-system.scm b/guix/build/go-build-system.scm
index d106e70..22427a8 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)))