summaryrefslogtreecommitdiff
path: root/dev_deploy.ps1
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-01-24 03:52:13 +0800
committer魏曹先生 <1992414357@qq.com>2026-01-24 03:52:13 +0800
commitb32a021c2d5075303f5987e702c9df83e7c365e7 (patch)
tree84b032fc5c1ef6785b2ee04e82fb58a3eb627782 /dev_deploy.ps1
parent058613e9d45dbf7bebca73fe678245632b2847fa (diff)
Move hide logic to separate script
Diffstat (limited to 'dev_deploy.ps1')
-rw-r--r--dev_deploy.ps18
1 files changed, 0 insertions, 8 deletions
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