8000 improved regexp to also parse error messages with single quotes around header file name by dennisppaul · Pull Request #2782 · arduino/arduino-cli · GitHub
[go: up one dir, main page]

Skip to content

improved regexp to also parse error messages with single quotes around header file name #2782

New issue

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

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
improved regexp to also parse error messages with single quotes aroun…
…d header file name
  • Loading branch information
dennisppaul committed Dec 13, 2024
commit 78941c05820f3ae4ca26e59adebce81529b2e497
2 changes: 1 addition & 1 deletion internal/arduino/builder/internal/detector/detector.go
Original file line number Diff line number Diff line change
Expand Up @@ -478,7 +478,7 @@ func (l *SketchLibrariesDetector) failIfImportedLibraryIsWrong() error {
}

// includeRegexp fixdoc
var includeRegexp = regexp.MustCompile("(?ms)^\\s*#[ \t]*include\\s*[<\"](\\S+)[\">]")
var includeRegexp = regexp.MustCompile(`(?ms)[<"'](\S+)[">']`)

// IncludesFinderWithRegExp fixdoc
func IncludesFinderWithRegExp(source string) string {
Expand Down
Loading
0