Skip to content

Commit 6e5cb7d

Browse files
committed
Ignore certain directories
1 parent a5374e7 commit 6e5cb7d

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -349,3 +349,5 @@ MigrationBackup/
349349
# Ionide (cross platform F# VS Code tools) working folder
350350
.ionide/
351351
Package/
352+
SAT/
353+
scwpd/

Create-SitecoreModule-DockerAssetImage.ps1

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,10 @@ Write-Host "`n"
4343

4444
$satDirecory = $PSScriptRoot + "\SAT"
4545

46+
If (!(Test-Path($satDirecory))) {
47+
New-Item -ItemType Directory -Force -Path $satDirecory
48+
}
49+
4650
if (Test-Path -Path "$satDirecory\$satPackageName") {
4751
Write-Host "SKIPPING - $satDirecory folder already contains the $satPackageName file" -ForegroundColor Cyan
4852
}

0 commit comments

Comments
 (0)