##// END OF EJS Templates
branch permissions: fixed a case of showing branch permissions entries when inheritation model is used....
branch permissions: fixed a case of showing branch permissions entries when inheritation model is used. - the algo picker used not-explicit pattern but whole set - fixes #5502

File last commit:

r2956:63ee4af1 default
r3154:ea307128 default
Show More
release.nix
21 lines | 288 B | text/x-nix | NixLexer
nix: updated to 18.03 nix packages...
r2824 # This file defines how to "build" for packaging.
project: added all source files and assets
r1
{ pkgs ? import <nixpkgs> {}
release: disable check phase for building installation
r2956 , doCheck ? false
project: added all source files and assets
r1 }:
let
nix: updated to 18.03 nix packages...
r2824 enterprise_ce = import ./default.nix {
project: added all source files and assets
r1 inherit
nix: updated to 18.03 nix packages...
r2824 doCheck
project: added all source files and assets
r1 pkgs;
release: disable check phase for building installation
r2956
# disable checkPhase for build
checkPhase = ''
'';
project: added all source files and assets
r1 };
nix: updated to 18.03 nix packages...
r2824 in {
build = enterprise_ce;
}