summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--deploy.ps18
1 files changed, 8 insertions, 0 deletions
diff --git a/deploy.ps1 b/deploy.ps1
index 8140dcb..fb51be4 100644
--- a/deploy.ps1
+++ b/deploy.ps1
@@ -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) {