Skip to content
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

Fix exit-code pass-thru with nave use and add -o option to enable overriding default cURL flags #38

Closed
wants to merge 5 commits into from

Commits on Jun 25, 2012

  1. support override default cURL options (-#Lf) via new, options -o flag.

    E.g.
    
    nave -o '-Ls' ls-remote
    Niall O'Higgins committed Jun 25, 2012
    Copy the full SHA
    4b9f805 View commit details
    Browse the repository at this point in the history
  2. options parsing

    Niall O'Higgins committed Jun 25, 2012
    Copy the full SHA
    14751bb View commit details
    Browse the repository at this point in the history
  3. bump version

    Niall O'Higgins committed Jun 25, 2012
    Copy the full SHA
    d8c73ff View commit details
    Browse the repository at this point in the history

Commits on Jun 27, 2012

  1. correctly pass-thu exit status with nave use.

    e.g without patch:
    
    <nialljohiggins@mbp:nave>$ nave use 0.8.0 exit 1
    Already installed: 0.8.0
    using 0.8.0
    <nialljohiggins@mbp:nave>$ echo $?
    0
    
    with patch:
    
    <nialljohiggins@mbp:nave>$ sh nave.sh use 0.8.0 exit 1
    Already installed: 0.8.0
    using 0.8.0
    failed somehow
    <nialljohiggins@mbp:nave>$ echo $?
    1
    Niall O'Higgins committed Jun 27, 2012
    Copy the full SHA
    5fdb247 View commit details
    Browse the repository at this point in the history

Commits on Jul 17, 2012

  1. don't default to building a debug version of node, because this can c…

    …onfuse node-gyp.
    Niall O'Higgins committed Jul 17, 2012
    Copy the full SHA
    e047c51 View commit details
    Browse the repository at this point in the history