summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--setup.ps111
1 files changed, 11 insertions, 0 deletions
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
+}