We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The NPM package building the artifacts is using the following for the parameter file name (notice ARM is all caps).
ARMTemplateParametersForFactory.json
Line 551 of the PrePostDeploymentScript.Ver2.ps1 script to bulid the path for that file when not provided uses:
$ArmTemplateParameters = Join-Path -Path (Split-Path $ArmTemplate -Parent) -ChildPath 'ArmTemplateParametersForFactory.json'
This fails to find the file due to the case mismatch in the filename, mixed case of "Arm" instead of "ARM".
Can this be adjusted to address the issue?
It only causes problems on a linux based agent. Windows agents seem to be case insensitive and this doesn't cause a problem.
The text was updated successfully, but these errors were encountered:
Reviewing the open pull requests this seems to have been fixed already. Just need to merge the pull
#584
Sorry, something went wrong.
No branches or pull requests
The NPM package building the artifacts is using the following for the parameter file name (notice ARM is all caps).
ARMTemplateParametersForFactory.json
Line 551 of the PrePostDeploymentScript.Ver2.ps1 script to bulid the path for that file when not provided uses:
$ArmTemplateParameters = Join-Path -Path (Split-Path $ArmTemplate -Parent) -ChildPath 'ArmTemplateParametersForFactory.json'
This fails to find the file due to the case mismatch in the filename, mixed case of "Arm" instead of "ARM".
Can this be adjusted to address the issue?
It only causes problems on a linux based agent. Windows agents seem to be case insensitive and this doesn't cause a problem.
The text was updated successfully, but these errors were encountered: