From 25c3d1eab3ef3a5e0917e5c725f8ddd6d000f61e Mon Sep 17 00:00:00 2001 From: sebdotv Date: Tue, 12 Aug 2025 15:02:11 +0200 Subject: [PATCH] fix README.md in example_eframe The --fast option does not exist (it was probably replaced with counter-party --release); a non-existing option causes a break in the script, effectively ignoring the --open option. --- example_eframe/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example_eframe/README.md b/example_eframe/README.md index ca819e2..5926a4a 100644 --- a/example_eframe/README.md +++ b/example_eframe/README.md @@ -10,5 +10,5 @@ cargo run --release -p example_eframe ``` sh ./setup_web.sh ./start_server.sh & -./build_web.sh --fast --open +./build_web.sh --open ```