##// END OF EJS Templates
exceptions: for dulwich we cannot catch all exceptions because it re-uses some...
exceptions: for dulwich we cannot catch all exceptions because it re-uses some general exceptions for it's use.

File last commit:

r34:640a4096 default
r172:40d7e43c default
Show More
release.nix
15 lines | 164 B | text/x-nix | NixLexer
{ pkgs ? import <nixpkgs> {}
, doCheck ? true
}:
let
vcsserver = import ./default.nix {
inherit
doCheck
pkgs;
};
in {
build = vcsserver;
}