Skip to content

Commit

Permalink
buildGoPackage: use a separator when joining extraSrcPaths together
Browse files Browse the repository at this point in the history
(cherry picked from commit d1fad21)
  • Loading branch information
pbogdan authored and fpletz committed Apr 1, 2018
1 parent f67968c commit 1dd960f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkgs/development/go-modules/generic/default.nix
Expand Up @@ -98,7 +98,7 @@ go.stdenv.mkDerivation (
rmdir goPath
'') + (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
Expand Down

0 comments on commit 1dd960f

Please sign in to comment.