Author: pekka.klarck
Date: Mon Feb 23 09:12:11 2009
New Revision: 1337

Modified:
   trunk/install.py

Log:
sys.exit was actually needed here - otherwise (un)installation would be considered succesful

Modified: trunk/install.py
==============================================================================
--- trunk/install.py    (original)
+++ trunk/install.py    Mon Feb 23 09:12:11 2009
@@ -93,6 +93,7 @@
             os.remove(path)
     except Exception, err:
         print "Removing '%s' failed: %s" % (path, err)
+        sys.exit(1)
     else:
         print "Removed '%s'" % path

Reply via email to