shunkakinoki / noirup

Installation tooling for Noir

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

noirup

Update or revert to a specific Nargo branch with ease.

Installing

curl -L https://raw.githubusercontent.com/noir-lang/noir/master/noirup/install | bash

Usage

To install the nightly version:

noirup

To install a specific version (in this case the nightly version):

noirup --version nightly

To install a specific branch (in this case the release/0.1.0 branch's latest commit):

noirup --branch release/0.1.0

To install a fork's main branch (in this case tomafrench/noir's main branch):

noirup --repo tomafrench/noir

To install a specific branch in a fork (in this case the patch-10 branch's latest commit in tomafrench/noir):

noirup --repo tomafrench/noir --branch patch-10

To install from a specific Pull Request:

noirup --pr 367

To install from a specific commit:

noirup -C 20048e7

To install a local directory or repository (e.g. one located at ~/git/noir, assuming you're in the home directory)

Note: --branch, --repo, and --version flags are ignored during local installations.
noirup --path ./git/noir

Tip: All flags have a single character shorthand equivalent! You can use -v instead of --version, etc.


About

Installation tooling for Noir


Languages

Language:Shell 100.0%