-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjustfile
More file actions
40 lines (30 loc) · 743 Bytes
/
justfile
File metadata and controls
40 lines (30 loc) · 743 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
########################################
## Build
build tool="slither":
nix build .#{{tool}}
build-all:
just build cloudexec
just build code
just build crytic-compile
just build echidna
just build medusa
just build mewt
just build muton
just build necessist
just build roundme
just build slither
just build solc-select
########################################
## Update
update-check:
python3 scripts/update_tool_pins.py --check
update:
python3 scripts/update_tool_pins.py --apply --verify
########################################
## Install
install tool="slither":
nix profile add .#{{tool}}
upgrade tool="slither":
nix profile upgrade {{tool}}
uninstall tool="slither":
nix profile remove {{tool}}