build: go-build-system: Use WHEN for side-effect conditionals.

* guix/build/go-build-system.scm (unpack): Replace single branch `if' by
`when'.
master
Maxim Cournoyer 2019-04-04 23:26:04 -04:00
parent b5f0528354
commit 7e84d3eef7
No known key found for this signature in database
GPG Key ID: 1260E46482E63562
1 changed files with 4 additions and 0 deletions

View File

@ -158,6 +158,10 @@ unpacking."
((display "WARNING: The Go import path is unset.\n")))
(if (string-null? unpack-path)
(set! unpack-path import-path))
(when (string-null? import-path)
((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)))
(mkdir-p dest)
(if (file-is-directory? source)