Don't error out if killing the fcgi processes fails
authorEvan Broder <broder@mit.edu>
Mon, 17 Nov 2008 10:04:53 +0000 (05:04 -0500)
committerEvan Broder <broder@mit.edu>
Mon, 17 Nov 2008 10:04:53 +0000 (05:04 -0500)
This was causing the invirt-web install process to sometimes fail,
because it would run before the web server was started back up again

svn path=/trunk/packages/invirt-web/; revision=1692

code/Makefile

index 418289f..270a871 100644 (file)
@@ -7,7 +7,7 @@ chmod:
        chmod -R g+w . 2>/dev/null || true
 
 kill:
-       wget http://xvm.mit.edu/kill.cgi -O /dev/null -nv
+       wget http://xvm.mit.edu/kill.cgi -O /dev/null -nv || true
 
 compile:
        for dir in $(DIRS); do \