mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
using throw instead of abort to not make the buildfarm fail
svn path=/nixpkgs/trunk/; revision=11301
This commit is contained in:
parent
9383efc9ba
commit
2a42a77223
1 changed files with 1 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
|||
args: with args;
|
||||
if (!args.subversion.perlBindings) then abort "svn perl bindings required to install gitsvnwrapper"
|
||||
if (!args.subversion.perlBindings) then throw "svn perl bindings required to install gitsvnwrapper"
|
||||
else args.stdenv.mkDerivation {
|
||||
inherit git perlLibs subversion;
|
||||
name = "git-svn-wrapper";
|
||||
|
|
Loading…
Reference in a new issue