Skip to content
This repository has been archived by the owner on Aug 3, 2023. It is now read-only.

fix(cli): commands are not wasm specific #141

Merged
merged 1 commit into from
May 24, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ fn main() -> Result<(), failure::Error> {
.subcommand(
SubCommand::with_name("generate")
.about(&*format!(
"{} Generate a new wasm worker project",
"{} Generates a new worker project",
emoji::DANCERS
))
.arg(
Expand Down Expand Up @@ -71,7 +71,7 @@ fn main() -> Result<(), failure::Error> {
)
.subcommand(
SubCommand::with_name("build")
.about(&*format!("{} Build your wasm with wasm-pack", emoji::CRAB)),
.about(&*format!("{} Build your worker", emoji::CRAB)),
)
.subcommand(SubCommand::with_name("publish").about(&*format!(
"{} Push your worker to the orange cloud",
Expand Down