From b11f9b57fec42e90fde7b54279e82a03fe8145d8 Mon Sep 17 00:00:00 2001 From: Joel Dice Date: Sun, 26 Feb 2023 18:45:54 -0700 Subject: [PATCH] set command name to "py2wasm" (#15) Signed-off-by: Joel Dice --- crates/spin-python-cli/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/spin-python-cli/src/main.rs b/crates/spin-python-cli/src/main.rs index 44f0cef..29b73fe 100644 --- a/crates/spin-python-cli/src/main.rs +++ b/crates/spin-python-cli/src/main.rs @@ -17,7 +17,7 @@ use { /// A Spin plugin to convert Python apps to Spin-compatible WebAssembly modules #[derive(Parser, Debug)] -#[command(author, version, about)] +#[command(author, version, about, name = "py2wasm")] struct Options { /// The name of a Python module containing a `handle_request` function for handling Spin HTTP requests app_name: String,