From 48a3fa1c27d2b9722f60dfaf062a0c71075a74f3 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Tue, 14 Apr 2026 14:25:00 +0800 Subject: Add script support to run-tools utilities The run-tools.ps1 and run-tools.sh scripts now support running both Rust binaries and shell scripts. They check dev_tools/scripts first, then dev_tools/src/bin. Also added a simple HTTP preview script. --- dev_tools/scripts/http-page-preview.sh | 3 +++ 1 file changed, 3 insertions(+) create mode 100755 dev_tools/scripts/http-page-preview.sh (limited to 'dev_tools') diff --git a/dev_tools/scripts/http-page-preview.sh b/dev_tools/scripts/http-page-preview.sh new file mode 100755 index 0000000..6c822d8 --- /dev/null +++ b/dev_tools/scripts/http-page-preview.sh @@ -0,0 +1,3 @@ +#!/bin/bash +cd "docs" +python3 -m http.server 3000 -- cgit