##// END OF EJS Templates
db: use asbool to detect if ping conenction or debug is set....
db: use asbool to detect if ping conenction or debug is set. Otherwise just those two flags present would trigger the conditions.

File last commit:

r3189:ed6bb022 default
r3301:1da16c19 stable
Show More
release.nix
19 lines | 248 B | text/x-nix | NixLexer
# This file defines how to "build" for packaging.
{ doCheck ? false
}:
let
enterprise_ce = import ./default.nix {
inherit
doCheck;
# disable checkPhase for build
checkPhase = ''
'';
};
in {
build = enterprise_ce;
}