From d226aad32d30a66ca027af27bacdcfec9dbfbbf4 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Wed, 7 Jan 2026 15:20:25 +0800 Subject: Hide .cargo and .temp directories before build --- deploy.ps1 | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/deploy.ps1 b/deploy.ps1 index 8140dcb..fb51be4 100644 --- a/deploy.ps1 +++ b/deploy.ps1 @@ -1,5 +1,13 @@ # Require : Cargo (Rust), ISCC (Inno Setup) +# Hide .cargo and .temp directories before build +if (Test-Path .cargo) { + attrib +h .cargo +} +if (Test-Path .temp) { + attrib +h .temp +} + # Check for ISCC $isccPath = Get-Command ISCC -ErrorAction SilentlyContinue if (-not $isccPath) { -- cgit