Skip to content
This repository was archived by the owner on May 1, 2024. It is now read-only.

Commit 339b092

Browse files
committed
Remove info messages from extract-zip.ps1
1 parent 200d9bd commit 339b092

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

scripts/extract-zip.ps1

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,9 @@ $zipDest = $args[1]
44

55
if (!(Test-Path $zipDest))
66
{
7-
Write-Host " * Creating $zipDest..." -foregroundcolor "green"
87
New-Item $zipDest -type directory -force
98
}
109

11-
Write-Host " * Extracting files into $zipDest..." -foregroundcolor "green"
1210
$shell = New-Object -com Shell.Application
1311
$zipFile = $shell.NameSpace($zipPath)
1412
foreach ($item in $zipFile.items())

0 commit comments

Comments
 (0)