From 78afc911f9f849c2d4f3b037ea1c548b70636a76 Mon Sep 17 00:00:00 2001 From: Firstyear Date: Thu, 2 Jan 2025 17:05:21 +1000 Subject: [PATCH] fix axum tutorial in makefile (#470) --- tutorial/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tutorial/Makefile b/tutorial/Makefile index 0f5d0641..594a4505 100644 --- a/tutorial/Makefile +++ b/tutorial/Makefile @@ -13,9 +13,9 @@ actix: wasm axum: ## Build and run the axum server axum: - cd server/axum && ./build_wasm.sh && cargo run + cd server/axum && cargo run tide: ## Build and run the tide server tide: wasm - cd server/tide && cargo run \ No newline at end of file + cd server/tide && cargo run