From 354e22f867dfce24354ac6770fd95ae770383dd5 Mon Sep 17 00:00:00 2001 From: Joel Dice Date: Sat, 25 Feb 2023 10:57:15 -0700 Subject: [PATCH] set command name to "py2wasm" 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,