oortcloud / meteorite

Installer & smart package manager for Meteor
http://oortcloud.github.com/meteorite/
MIT License
841 stars 106 forks source link

create packages directory if it doesn't exist #304

Closed aldeed closed 10 years ago

aldeed commented 10 years ago

Just a little check to allow this:

$ meteor create test
$ cd test
$ mrt link-package test-package

instead of this

$ meteor create test
$ cd test
$ mkdir packages
$ mrt link-package test-package
tmeasday commented 10 years ago

Oh, nice one. Thanks @aldeed !