-
Notifications
You must be signed in to change notification settings - Fork 94
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
packages #13
Comments
#
# Get and install <repo>.
#
get() {
local prev=`pwd`
local repo=$1
rm -fr /tmp/get \
&& mkdir /tmp/get \
&& cd /tmp/get \
&& curl -#L https://github.com/$repo/tarball/master \
| tar zx --strip 1 \
&& make install \
&& cd $prev
} is what I use, |
It might be easier in the readme to do a one-liner, like npm and brew installation. curl http://github.com/visionmedia/mon/install.sh | sh |
that gets annoying per-project, I'll look into adding it to brew etc later, though I know brew is really annoying to maintain |
Sure, but I think for the README people want a one liner....not every will know to put this in the .bashrc. |
Any chance of getting packages for debian and brew?
The text was updated successfully, but these errors were encountered: