1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-25 15:11:35 +00:00

Merge pull request #14319 from grahamc/jenkins

jenkins: copy .war to $out, fixes #14137
This commit is contained in:
Domen Kožar 2016-03-30 18:19:07 +01:00
commit 253af9a0a4

View file

@ -16,5 +16,5 @@ stdenv.mkDerivation rec {
maintainers = [ maintainers.coconnor ];
};
buildCommand = "ln -s $src $out";
buildCommand = "cp $src $out";
}