Skip to content
This repository was archived by the owner on Aug 25, 2025. It is now read-only.
Open
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
2 changes: 1 addition & 1 deletion .bin/create-wasm-app.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const clone = spawn("git", ["clone", "https://github.com/rustwasm/create-wasm-ap

clone.on("close", code => {
if (code !== 0) {
console.error("cloning the template failed!")
console.error("Please provide the desired project name, eg.: `npm init wasm-app <my-awesome-project>`")
process.exit(code);
} else {
console.log("🦀 Rust + 🕸 Wasm = ❤");
Expand Down