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.
master
Maxim Cournoyer 2019-05-05 22:41:11 -04:00
parent 59781b32d8
commit 2edec51c5e
No known key found for this signature in database
GPG Key ID: 1260E46482E63562
1 changed files with 1 additions and 1 deletions

View File

@ -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)))