Move reset.sh to Makefile
This commit is contained in:
parent
8acef01b68
commit
60c0f952eb
2 changed files with 7 additions and 5 deletions
7
Makefile
7
Makefile
|
@ -17,3 +17,10 @@ uninstall:
|
||||||
|
|
||||||
test:
|
test:
|
||||||
@cd onionr; ./tests.py
|
@cd onionr; ./tests.py
|
||||||
|
|
||||||
|
reset:
|
||||||
|
echo "RESETING ONIONR"
|
||||||
|
rm -f onionr/data/blocks/*.dat | true > /dev/null 2>&1
|
||||||
|
rm -f onionr/data/peers.db | true > /dev/null 2>&1
|
||||||
|
rm -f onionr/data/blocks.db | true > /dev/null 2>&1
|
||||||
|
|
||||||
|
|
5
reset.sh
5
reset.sh
|
@ -1,5 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
echo "RESETING ONIONR"
|
|
||||||
rm onionr/data/blocks/*.dat
|
|
||||||
rm onionr/data/peers.db
|
|
||||||
rm onionr/data/blocks.db
|
|
Loading…
Reference in a new issue