File tree Expand file tree Collapse file tree 1 file changed +7
-14
lines changed Expand file tree Collapse file tree 1 file changed +7
-14
lines changed Original file line number Diff line number Diff line change 1
- # Use 'verbose=1' to echo all commands, for example 'make help verbose=1'.
2
- ifdef verbose
3
- Q :=
4
- else
5
- Q := @
6
- endif
7
-
8
1
precommit :
9
- $( Q ) sh .githooks/pre-push
2
+ @ sh .githooks/pre-push
10
3
11
4
clean :
12
- $( Q ) cargo clean
5
+ cargo clean
13
6
14
7
rebase-bitcoin-v0.29 :
15
- $( Q ) git checkout bitcoin-v0.29
16
- $( Q ) git rebase master
17
- $( Q ) git push origin --force-with-lease && git push upstream --force-with-lease
18
- $( Q ) git checkout master
8
+ git checkout bitcoin-v0.29
9
+ git rebase master
10
+ git push origin --force-with-lease && git push upstream --force-with-lease
11
+ git checkout master
19
12
20
13
loc :
21
- $( Q ) echo " --- Counting lines of .rs files (LOC):" && find crates/ bindings/ -type f -name " *.rs" -exec cat {} \; | wc -l
14
+ @ echo " --- Counting lines of .rs files (LOC):" && find crates/ bindings/ -type f -name " *.rs" -exec cat {} \; | wc -l
You can’t perform that action at this time.
0 commit comments