
12 Jan
2014
12 Jan
'14
6:06 a.m.
commit ae97c3e16324c3693b132d408d3dbd0e0870e979 Author: Isis Lovecruft <isis@torproject.org> Date: Fri Oct 11 01:02:27 2013 +0000 Add 'reinstall' directive to the Makefile. --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile b/Makefile index 19225c5..0735f41 100644 --- a/Makefile +++ b/Makefile @@ -11,6 +11,11 @@ test: install: python setup.py install --record installed-files.txt +force-install: + python setup.py install --force --record installed-files.txt 2>&1 >/dev/null + uninstall: touch installed-files.txt cat installed-files.txt | xargs rm -rf + +reinstall: uninstall force-install