##// END OF EJS Templates
vcs: handle excessive slashes in from of the repo name path, fixes #5522
vcs: handle excessive slashes in from of the repo name path, fixes #5522

File last commit:

r3189:ed6bb022 default
r3329:e2c979bc 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;
}