mirror of
https://github.com/coder/coder.git
synced 2026-06-02 20:48:20 +00:00
1cc23a3144
Previously the command required exactly two arguments, forcing users to run it multiple times to declare multiple dependencies for a single unit. This accepts variadic depends-on arguments so all dependencies can be declared in one call: ``` coder exp sync want my-unit dep-1 dep-2 dep-3 ``` --------- Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com> Co-authored-by: Marcin Tojek <mtojek@users.noreply.github.com>
14 lines
423 B
Plaintext
14 lines
423 B
Plaintext
coder v0.0.0-devel
|
|
|
|
USAGE:
|
|
coder exp sync want <unit> <depends-on> [depends-on...]
|
|
|
|
Declare that a unit depends on other units completing before it can start
|
|
|
|
Declare that a unit depends on one or more other units completing before it
|
|
can start. The unit specified first will not start until all subsequent units
|
|
have signaled that they have completed.
|
|
|
|
———
|
|
Run `coder --help` for a list of global options.
|