Skip to content

Commit

Permalink
Testing solution
Browse files Browse the repository at this point in the history
testing more

testing more

testing more

testing more

testing more
  • Loading branch information
JonathanLorimer committed Dec 22, 2021
1 parent 6025c6c commit b48cd19
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions builder/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -72,16 +72,18 @@ let
go run ${./symlink.go}
${lib.concatStringsSep "\n" localReplaceCommands}
find vendor
mv vendor $out
'' +
(if customVendorSrc == null
then ""
else ''
${rsync}/bin/rsync -a ${customVendorSrc}/ $out/vendor/
cp -R ${customVendorSrc}/* vendor/
''
)
) +
''
find vendor
cp -R vendor $out
''
);

removeReferences = [ ] ++ lib.optional (!allowGoReference) go;
Expand Down

0 comments on commit b48cd19

Please sign in to comment.