Skip to content
This repository was archived by the owner on Mar 11, 2020. It is now read-only.

Commit fa48790

Browse files
authored
Merge pull request #28 from sixeyed/master
1.7.1 release
2 parents 05435ce + fc05223 commit fa48790

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

0

8 Bytes
Binary file not shown.

Functions/Private/Artifacts/IIS/Generate_IIS.ps1

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,12 @@ if ($Artifact.Status -eq 'Present') {
5555

5656
for ($i=0;$i -lt $Artifact.Websites.Count;$i++) {
5757
$Site = $Artifact.Websites[$i]
58-
Write-Verbose -Message ('Writing instruction to copy files for {0} site' -f $Site.Name)
59-
$null = $ResultBuilder.AppendLine("# Set up website: $($Site.Name)")
60-
$SitePath = $MountPath + $Site.PhysicalPath
58+
$SitePath = $Mount.Path + $Site.PhysicalPath
59+
Write-Verbose -Message ('Copying website files from {0} to {1}' -f $SitePath, $ManifestPath)
6160
Copy-Item $SitePath $ManifestPath -Recurse
61+
62+
Write-Verbose -Message ('Writing instruction to copy files for {0} site' -f $Site.Name)
63+
$null = $ResultBuilder.AppendLine("# Set up website: $($Site.Name)")
6264
$copy = "COPY {0} {1}" -f (Split-Path $Site.PhysicalPath -Leaf),($Site.PhysicalPath -Replace "\\","/")
6365
$null = $ResultBuilder.AppendLine($copy)
6466

Functions/Private/GenerateDockerfile.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
)
2626

27-
Write-Verbose -Message 'Generating Dockerfile based on discovered artifacts'
27+
Write-Verbose -Message ('Generating Dockerfile based on discovered artifacts in :{0}' -f $Mount.Path)
2828
### Verify that the Dockerfile template is available
2929
$DockerfileTemplate = '{0}\Resources\Dockerfile-template' -f $ModulePath
3030

Image2Docker.psd1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
RootModule = 'Image2Docker.psm1'
1313

1414
# Version number of this module.
15-
ModuleVersion = '1.5.1'
15+
ModuleVersion = '1.7.1'
1616

1717
# Supported PSEditions
1818
### NOTE: This module will not work with PowerShell Core.
@@ -105,7 +105,7 @@ PrivateData = @{
105105
PSData = @{
106106

107107
# Tags applied to this module. These help with module discovery in online galleries.
108-
Tags = @('Docker', 'Migration','DockerFile','Image Capture')
108+
Tags = @('Docker', 'Migration','Dockerfile','VHD', 'VM')
109109

110110
# A URL to the license for this module.
111111
LicenseUri = 'http://www.apache.org/licenses/LICENSE-2.0'

0 commit comments

Comments
 (0)