From 5073863ec9e4f2819cdce548f4c96d3611a2a45f Mon Sep 17 00:00:00 2001 From: Evan Broder Date: Mon, 17 Nov 2008 05:04:53 -0500 Subject: [PATCH] Don't error out if killing the fcgi processes fails 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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/Makefile b/code/Makefile index 418289f..270a871 100644 --- a/code/Makefile +++ b/code/Makefile @@ -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 \ -- 1.7.9.5