From 203e47397db962610daf7e0d61b462e7e78cdef7 Mon Sep 17 00:00:00 2001 From: Aaron Fenyes Date: Thu, 7 Aug 2025 18:06:26 -0700 Subject: [PATCH] Move `run-examples.sh` into the tools folder --- {app-proto => tools}/run-examples.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename {app-proto => tools}/run-examples.sh (89%) diff --git a/app-proto/run-examples.sh b/tools/run-examples.sh similarity index 89% rename from app-proto/run-examples.sh rename to tools/run-examples.sh index 861addf..0946d92 100644 --- a/app-proto/run-examples.sh +++ b/tools/run-examples.sh @@ -8,7 +8,7 @@ # the application prototype # find the manifest file for the application prototype -MANIFEST="$(dirname -- $0)/Cargo.toml" +MANIFEST="$(dirname -- $0)/../app-proto/Cargo.toml" # set up the command that runs each example RUN_EXAMPLE="cargo run --manifest-path $MANIFEST --example"