Reputation: 470
I am trying to install the spomet
and accounts-entry
packages with meteorite and I'm receiving this:
smart.json changed.. installing from smart.json
smart.json changed.. installing from smart.json
✓ iron-router
tag: https://github.com/EventedMind/iron-router.git#v0.6.1
/usr/local/lib/node_modules/meteorite/lib/sources/git.js:151
hrow "There was a problem checking out " + self.checkoutType + ": " + (self.co
^
There was a problem checking out tag: v0.6.1
What does this mean? Any help is appreciated, thanks.
Upvotes: 1
Views: 289
Reputation: 13457
I periodically get this error with a variety of meteorite packages.
The fix that usually works for me is to kill the ~/.meteorite directory by running...
mrt uninstall --system
...then trying again.
Upvotes: 3
Reputation: 75945
The problem's with iron-router.
It depends on the npm module connect. The npmjs repository is having a bit of trouble at the moment try in a few hours perhaps.
You could try forcing an install:
In your project:
cd packages
git clone https://github.com/EventedMind/iron-router.git
This should forcibly install iron-router in. And if not give more details as an error.
Upvotes: 2