Merge pull request #38301 from pbogdan/go-extra-src-paths
buildGoPackage: use a separator when joining extraSrcPaths together
This commit is contained in:
commit
b1687d3a95
@ -98,7 +98,7 @@ go.stdenv.mkDerivation (
|
|||||||
rmdir goPath
|
rmdir goPath
|
||||||
|
|
||||||
'') + (lib.optionalString (extraSrcPaths != []) ''
|
'') + (lib.optionalString (extraSrcPaths != []) ''
|
||||||
${rsync}/bin/rsync -a ${lib.concatMapStrings (p: "${p}/src") extraSrcPaths} go
|
${rsync}/bin/rsync -a ${lib.concatMapStringsSep " " (p: "${p}/src") extraSrcPaths} go
|
||||||
|
|
||||||
'') + ''
|
'') + ''
|
||||||
export GOPATH=$NIX_BUILD_TOP/go:$GOPATH
|
export GOPATH=$NIX_BUILD_TOP/go:$GOPATH
|
||||||
|
Loading…
x
Reference in New Issue
Block a user