You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Isn't this being prevented by the following bit within UpdateCommand?
if (versionToInstall <= currentSidekickCliVersion) {
print('No need to update because you are already using the ''latest sidekick cli version.');
return;
}
In the past, we used
sidekick init
to "upgrade" a sidekick cli to the latest template version.Now it may happen, that a user calls
sidekick init
with an outdatedsidekick
version, basically downgrading thesidekick
package.We can prevent this by checking the version in
pubspec.yaml
and compare it to the version ofsidekick_core
.The text was updated successfully, but these errors were encountered: