Skip to content

Commit

Permalink
Fix for sources case sensitivity bug #8102 (#345)
Browse files Browse the repository at this point in the history
* Fix for sources case sensitivity bug microsoft/coe-starter-kit#8102

* Fix for case sensitivity
  • Loading branch information
mikefactorial authored Apr 19, 2024
1 parent e6b18af commit 7f8154d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Pipelines/Templates/build-Solution.yml
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ steps:
displayName: 'Replace Tokens: deploymentSettings.json'
inputs:
root: $(Build.SourcesDirectory)\$(RepoName)\${{parameters.solutionName}}\config\
sources: '**\*deploymentSettings*.json'
sources: '**\*[dD]eploymentSettings*.json'
missingVarLog: 'off'
addBOM: false
encoding: 'utf-8'
Expand Down
2 changes: 1 addition & 1 deletion Pipelines/Templates/deploy-Solution.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ steps:
displayName: 'Replace Tokens: deploymentSettings.json'
inputs:
root: '$(Pipeline.Workspace)'
sources: '**\*deploymentSettings*.json'
sources: '**\*[dD]eploymentSettings*.json'
missingVarLog: 'off'
addBOM: false
encoding: 'utf-8'
Expand Down

0 comments on commit 7f8154d

Please sign in to comment.