Skip to content

Commit ea29723

Browse files
committed
We only support the 'up' subcommand
1 parent 8ca3ceb commit ea29723

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

nix/flake-module.nix

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,9 @@ in
7777
default = lib.concatStringsSep " " getCliArgs;
7878
internal = true;
7979
readOnly = true;
80-
description = "Extra command-line arguments to pass to process-compose.";
80+
description = ''
81+
Extra command-line arguments to pass to process-compose.
82+
'';
8183
};
8284
};
8385
};
@@ -98,7 +100,7 @@ in
98100
inherit name;
99101
runtimeInputs = [ config.process-compose.package ];
100102
text = ''
101-
process-compose -f ${toYAMLFile processComposeConfig} ${config.process-compose.extraCliArgs} "$@"
103+
process-compose up -f ${toYAMLFile processComposeConfig} ${config.process-compose.extraCliArgs} "$@"
102104
'';
103105
}
104106
)

0 commit comments

Comments
 (0)