From b32a021c2d5075303f5987e702c9df83e7c365e7 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Sat, 24 Jan 2026 03:52:13 +0800 Subject: Move hide logic to separate script --- dev_deploy.ps1 | 8 -------- 1 file changed, 8 deletions(-) (limited to 'dev_deploy.ps1') diff --git a/dev_deploy.ps1 b/dev_deploy.ps1 index 2eb4fa5..8e9bff0 100644 --- a/dev_deploy.ps1 +++ b/dev_deploy.ps1 @@ -5,14 +5,6 @@ $scriptPath = $MyInvocation.MyCommand.Path $scriptDir = Split-Path $scriptPath -Parent Set-Location $scriptDir -# Hide .cargo and .temp directories before build -if (Test-Path .cargo) { - attrib +h .cargo -} -if (Test-Path .temp) { - attrib +h .temp -} - # Build $env:FORCE_BUILD=$(Get-Date -Format 'mm') cargo build --workspace -- cgit