Skip to content
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

feat(manager/asdf): support channel suffix on asdf-flutter #22131

Merged
merged 5 commits into from May 17, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/modules/manager/asdf/upgradeable-tooling.ts
Expand Up @@ -147,7 +147,7 @@
config: (version) => ({
datasource: FlutterVersionDatasource.id,
// asdf-flutter plugin supports channel on version suffix.
currentValue: version.replace(/-(stable|beta|dev)$/, ''),
currentValue: version.replace(regEx(/-(stable|beta|dev)$/), ''),

Check failure on line 150 in lib/modules/manager/asdf/upgradeable-tooling.ts

View workflow job for this annotation

GitHub Actions / lint

Cannot find name 'regEx'. Did you mean 'RegExp'?

Check failure on line 150 in lib/modules/manager/asdf/upgradeable-tooling.ts

View workflow job for this annotation

GitHub Actions / test (ubuntu-latest)

Cannot find name 'regEx'. Did you mean 'RegExp'?
viceice marked this conversation as resolved.
Show resolved Hide resolved
}),
},
gauche: {
Expand Down