-
Notifications
You must be signed in to change notification settings - Fork 5
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
Enable update check for everyone #177
Conversation
a7d5571
to
ce14088
Compare
@@ -197,23 +197,29 @@ class SidekickCommandRunner<T> extends CommandRunner<T> { | |||
Repository.requiredSidekickPackage, | |||
['dependencies', 'sidekick_core'], | |||
); | |||
if (sidekickCoreVersion == null) { | |||
// Couldn't parse sidekick_core version. Most likely because it uses |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We could fallback to VersionChecker.getResolvedVersion
because pubspec.lock
contains version information for git or path dependencies as well. But that's probably overkill, so you can ignore this comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good idea for the future 👍
Co-authored-by: Giuseppe Cianci <39117631+Giuspepe@users.noreply.github.com>
3c7d736
to
44e6b25
Compare
We discovered, that our update check, which was hidden behind a flag works fine in the wild. Time to enable it for everyone
Land after #180