diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-01-07 15:20:25 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-01-07 15:20:25 +0800 |
| commit | d226aad32d30a66ca027af27bacdcfec9dbfbbf4 (patch) | |
| tree | 36dae1ef6be84ec225a50d382eafbacdb943d17c /deploy.ps1 | |
| parent | 5bffd568245babb8b1ed42b8c19647426414121f (diff) | |
Hide .cargo and .temp directories before build
Diffstat (limited to 'deploy.ps1')
| -rw-r--r-- | deploy.ps1 | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -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) { |
