Skip to content

Commit 5402fbe

Browse files
committed
refactor(cli): Rename exported-ext-wit to extensions
1 parent b1930dc commit 5402fbe

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/args.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ pub(crate) enum Generate {
4040
},
4141
/// Generate extension WIT files that are automatically implemented by Obelisk
4242
/// based on the exported interfaces of the component.
43-
ExportedExtWits {
43+
Extensions {
4444
/// One of `workflow`, `activity_wasm`, `activity_stub`, `webhook_endpoint`
4545
component_type: ComponentType,
4646
/// Path to the `wit` folder, containing the target world and possibly `deps` subfolder.

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ async fn main() -> Result<(), anyhow::Error> {
157157
Subcommand::Generate(Generate::ConfigSchema { output }) => {
158158
command::generate::generate_toml_schema(output)
159159
}
160-
Subcommand::Generate(Generate::ExportedExtWits {
160+
Subcommand::Generate(Generate::Extensions {
161161
component_type,
162162
input_wit_directory,
163163
output_deps_directory,

0 commit comments

Comments
 (0)