File tree Expand file tree Collapse file tree 1 file changed +21
-0
lines changed
Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Original file line number Diff line number Diff line change @@ -101,6 +101,19 @@ else {
101101 Write-Host " $scwdpPath " - ForegroundColor Yellow
102102 Write-Host " `n "
103103
104+ Write-Host " =================================================================================================================================="
105+ Write-Host " `n "
106+ Write-Host " START - [Extracting Sitecore WebDeploy package]"
107+ Write-Host " `n "
108+
109+ $extractSCwdpDirectory = $scwdpDirectory + " \extract"
110+
111+ If (! (Test-Path ($extractSCwdpDirectory ))) {
112+ New-Item - ItemType Directory - Force - Path $extractSCwdpDirectory
113+ }
114+
115+ Expand-Archive - Path " $scwdpPath " - DestinationPath " $extractSCwdpDirectory " - Force
116+
104117 Write-Host " =================================================================================================================================="
105118 Write-Host " `n "
106119 Write-Host " START - [Creating Sitecore module asset image structure]"
@@ -136,6 +149,14 @@ else {
136149
137150 Write-Host " =================================================================================================================================="
138151 Write-Host " `n "
152+ Write-Host " SUCCESS - Succesfully created the Docker Asset Image structure in directory $moduleDirectory " - ForegroundColor Green
153+ Write-Host " `n "
154+
155+ tree $moduleDirectory / a
156+
157+ Write-Host " `n "
158+ Write-Host " =================================================================================================================================="
159+ Write-Host " `n "
139160}
140161
141162
You can’t perform that action at this time.
0 commit comments