diff options
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) { |
