diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-06-28 06:45:59 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-06-28 06:45:59 +0800 |
| commit | 490c4f53fec97b43b5c98d9f6addef496906297c (patch) | |
| tree | 5a7fd60b9d893c58ea6e9c4ca530fe8541a36d9a | |
| parent | 367d0112b37fa77220d6715a8d19789a23bc9f47 (diff) | |
chore(build): remove `cargo clean` from build-all scripts
| -rw-r--r-- | dev_tools/scripts/build-all.ps1 | 1 | ||||
| -rwxr-xr-x | dev_tools/scripts/build-all.sh | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/dev_tools/scripts/build-all.ps1 b/dev_tools/scripts/build-all.ps1 index ecf4465..4f35ed8 100644 --- a/dev_tools/scripts/build-all.ps1 +++ b/dev_tools/scripts/build-all.ps1 @@ -1,5 +1,4 @@ $starting_dir = Get-Location -cargo clean Get-ChildItem -Recurse -Filter "Cargo.toml" | ForEach-Object { $project_dir = $_.DirectoryName Push-Location $project_dir diff --git a/dev_tools/scripts/build-all.sh b/dev_tools/scripts/build-all.sh index c23a2ef..2036b41 100755 --- a/dev_tools/scripts/build-all.sh +++ b/dev_tools/scripts/build-all.sh @@ -1,6 +1,5 @@ #!/bin/bash -cargo clean find . -name "Cargo.toml" -type f | while read -r cargo_file; do project_dir=$(dirname "$cargo_file") (cd "$project_dir" && cargo build) |
