Can I undo updating Meteor?

meteor

Solution

Meteor 0.6.0 and above ships with a new distribution system. You can now pass the `--release` argument to any Meteor command and it will run against the requested release. For example, to bundle your app against Meteor 0.6.1, run: `meteor bundle --release 0.6.1`. Notably, this only works for post-0.6.0 releases.

If you want to pin your app to a specific release, run: `meteor update --release <release>`. This modifies the `.meteor/release` file in your app directory. Then simply run Meteor as usual. You'll still get notified when there's a new release available.

Problem

I think updating Meteor might have broken my app. It was working, then I ran meteor update, and now it is not working. Can I do something like `meteor downgrade`?

Original source