update to use the new sfpkg names (#4)

This commit is contained in:
kwangjecho 2019-04-16 03:50:54 -07:00 коммит произвёл GitHub
Родитель 1d586e61ae
Коммит 9ffafc73bd
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -359,7 +359,7 @@ function Prepare-Packages([string]$packageFilePath) {
$allPackages = Get-ChildItem -Path $packageFilePath -Include *.sfpkg -File -Recurse
foreach ($package in $allPackages) {
$parentFolderName = ''
if ($package.FullName -match '(Deployment.DataX\\Packages\\)(.*)(\\Microsoft)')
if ($package.FullName -match '(Deployment.DataX\\Packages\\)(.*)(\\Microsoft.DataX)')
{
$parentFolderName = $Matches[2]
} else {
@ -394,7 +394,7 @@ function Fix-ApplicationTypeVersion([string] $parametersPath, [string] $packages
foreach($parameterFile in $allParameters) {
$paramJsonFile = Get-Content($parameterFile.fullname) | ConvertFrom-Json
$packageName = $paramJsonFile.parameters.sfPkgName.value
$packageName = "Microsoft" + $paramJsonFile.parameters.sfPkgName.value
$archivePaths = Get-ChildItem -Path $packagesPath -Filter "$packageName.zip" -File -Recurse