File tree Expand file tree Collapse file tree 1 file changed +1
-7
lines changed
Expand file tree Collapse file tree 1 file changed +1
-7
lines changed Original file line number Diff line number Diff line change 3333 default = { } ;
3434 type = types . submodule {
3535 options = {
36- detached = mkOption {
37- type = types . bool ;
38- default = false ;
39- description = "Pass --detached to process-compose" ;
40- } ;
4136 log-file = mkOption {
4237 type = types . nullOr types . str ;
4338 default = null ;
8580 readOnly = true ;
8681 description = "The final CLI arguments we will pass to process-compose binary." ;
8782 default = let o = config . cli . options ; in lib . escapeShellArgs (
88- ( lib . optionals o . detached [ "--detached" ] )
89- ++ ( lib . optionals ( o . log-file != null ) [ "--log-file" o . log-file ] )
83+ ( lib . optionals ( o . log-file != null ) [ "--log-file" o . log-file ] )
9084 ++ ( lib . optionals o . no-server [ "--no-server" ] )
9185 ++ ( lib . optionals o . ordered-shutdown [ "--ordered-shutdown" ] )
9286 ++ ( lib . optionals ( o . port != null ) [ "--port" "${ builtins . toString o . port } " ] )
You can’t perform that action at this time.
0 commit comments