diff options
| -rw-r--r-- | setup.ps1 | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -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 +} |
