mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
nixos/buildbot: fix usage of escapeStr
This commit is contained in:
parent
ba74d07245
commit
53eac0b4de
@ -16,10 +16,10 @@ let
|
||||
c = BuildmasterConfig = dict(
|
||||
workers = [${lib.concatStringsSep "," cfg.workers}],
|
||||
protocols = { 'pb': {'port': ${toString cfg.pbPort} } },
|
||||
title = '${lib.escapeStr cfg.title}',
|
||||
titleURL = '${lib.escapeStr cfg.titleUrl}',
|
||||
buildbotURL = '${lib.escapeStr cfg.buildbotUrl}',
|
||||
db = dict(db_url='${lib.escapeStr cfg.dbUrl}'),
|
||||
title = '${escapeStr cfg.title}',
|
||||
titleURL = '${escapeStr cfg.titleUrl}',
|
||||
buildbotURL = '${escapeStr cfg.buildbotUrl}',
|
||||
db = dict(db_url='${escapeStr cfg.dbUrl}'),
|
||||
www = dict(port=${toString cfg.port}),
|
||||
change_source = [ ${lib.concatStringsSep "," cfg.changeSource} ],
|
||||
schedulers = [ ${lib.concatStringsSep "," cfg.schedulers} ],
|
||||
|
Loading…
Reference in New Issue
Block a user