basic update utility -- for complementing installs. Does pull, applies latest patches and sync
diff --git a/update_erpnext.py b/update_erpnext.py
index 339b833..341fafd 100644
--- a/update_erpnext.py
+++ b/update_erpnext.py
@@ -6,7 +6,7 @@
 	'lib/wnf.py -l',
 	'lib/wnf.py --sync_all'
 ]
-
+err = 0
 for cmd in cmd_list:
 	stat, op = commands.getstatusoutput(cmd)
 	if stat != 0:
@@ -14,6 +14,10 @@
 		print "cannot proceed with update"
 		print "status: %s" % stat
 		print "output: %s" % op
+		err = 1
 		break
 		
-print "update_erpnext.py --> run success."
\ No newline at end of file
+if not err:
+	print "update_erpnext.py --> run success."
+else:
+	print "update_erpnext.py --> run failed."
\ No newline at end of file