We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
nargo
1 parent 2e1a927 commit 8d13818Copy full SHA for 8d13818
src/noir/devcontainer-feature.json
@@ -12,9 +12,10 @@
12
"default": "nightly"
13
}
14
},
15
- "onCreateCommand": "nargo --version",
+ "onCreateCommand": "echo $PATH && nargo --version",
16
"containerEnv": {
17
- "PATH": "$_REMOTE_USER_HOME/nargo/bin:${PATH}"
+ "NARGO_HOME":"/nargo",
18
+ "PATH": "/nargo/bin:${PATH}"
19
20
"customizations": {
21
"vscode": {
@@ -24,5 +25,4 @@
24
25
]
26
27
-
28
src/noir/install.sh
@@ -3,8 +3,5 @@ set -e
3
4
apt update && apt install -y curl git tar gzip && rm -rf /var/lib/apt/lists/* && apt clean
5
6
-export NARGO_HOME="$_REMOTE_USER_HOME/nargo"
7
curl -L https://raw.githubusercontent.com/noir-lang/noirup/main/install | bash
8
-$NARGO_HOME/bin/noirup -v $VERSION
9
10
-PATH="$PATH:$NARGO_HOME/bin"
+noirup -v $VERSION
0 commit comments