We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e63e35 commit 664e664Copy full SHA for 664e664
1 file changed
internal/app/azldev/core/sources/sourceprep.go
@@ -238,7 +238,7 @@ func (p *sourcePreparerImpl) postProcessSources(
238
func synthesizeMacroLoadOverlays(macrosFileName string) ([]projectconfig.ComponentOverlay, error) {
239
// Basic check that the macros file name is valid and doesn't require escaping.
240
if strings.ContainsFunc(macrosFileName, func(r rune) bool {
241
- return !unicode.IsLetter(r) && !unicode.IsDigit(r) && r != '.' && r != '-' && r != '_'
+ return !unicode.IsLetter(r) && !unicode.IsDigit(r) && r != '.' && r != '-' && r != '_' && r != '+'
242
}) {
243
return nil, fmt.Errorf(
244
"macros file name %#q contains invalid characters; does the component name contain invalid characters?",
0 commit comments