From a09d7538191846a0c0e86fcb87638e0bec182587 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Sat, 10 Jan 2026 18:01:29 +0800 Subject: Hide .cargo, .github and .temp directories before build --- setup.ps1 | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'setup.ps1') diff --git a/setup.ps1 b/setup.ps1 index b2e48a2..6f51441 100644 --- a/setup.ps1 +++ b/setup.ps1 @@ -7,3 +7,14 @@ if (Test-Path "docs/Documents/.git") { } else { git clone https://github.com/JustEnoughVCS/Documents.git docs/Documents } + +# Hide .cargo, .github and .temp directories before build +if (Test-Path .cargo) { + attrib +h .cargo +} +if (Test-Path .github) { + attrib +h .github +} +if (Test-Path .temp) { + attrib +h .temp +} -- cgit