jeresig / pulley

Easy Github Pull Request Lander
MIT License
175 stars 24 forks source link

migrate "done" option to "--done" #44

Open mikesherov opened 12 years ago

mikesherov commented 12 years ago

This will allow us to not rely on argument order for CLI parsing (in case a branch was named "done"). This is a current blocker for extending the CLI stuff.

sindresorhus commented 12 years ago

I've thought about this too. We need to use an option parser. Grunt is using nopt, that's good enough reason for me.

sindresorhus commented 12 years ago

Also found node-optimist which is more popular.