coreh-deprecated / nide

Beautiful IDE for Node.js
http://coreh.github.com/nide/
713 stars 111 forks source link

Add support for running as root #25

Closed iwizardpro closed 12 years ago

iwizardpro commented 12 years ago

I added support for users who want nide to run as root. Previously, it assumed that the user would run as root and the files would be owned by another user (not root). This would cause nide to be run as "nobody" generating file permission errors. Adding --no-downgrade option allows for users to run as root.

coreh commented 12 years ago

Interesting addition. I didn't know commander had a special case for options starting with --no-.

Thanks!