We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8fc21b0 commit ee83c51Copy full SHA for ee83c51
src/ALZ/Private/Deploy-Accelerator-Helpers/New-Bootstrap.ps1
@@ -240,7 +240,7 @@ function New-Bootstrap {
240
Write-Verbose "Copying folder $additionalFile to $destination"
241
Copy-Item -Path "$additionalFile/*" -Destination $destination -Recurse -Force
242
} else {
243
- $fileName = [System.IO.Path]::GetFileName($inputConfigFilePath)
+ $fileName = [System.IO.Path]::GetFileName($additionalFile)
244
$destination = Join-Path -Path $starterRootModuleFolderPath -ChildPath $fileName
245
Write-Verbose "Copying file $additionalFile to $destination"
246
Copy-Item -Path $additionalFile -Destination $destination -Force
0 commit comments