Don't fail script if resize2fs fails
diff --git a/rw-system.sh b/rw-system.sh
index 9f25692..ecf1d55 100644
--- a/rw-system.sh
+++ b/rw-system.sh
@@ -41,12 +41,12 @@
 }
 
 if mount -o remount,rw /system;then
-	resize2fs $(grep ' /system ' /proc/mounts |cut -d ' ' -f 1)
+	resize2fs $(grep ' /system ' /proc/mounts |cut -d ' ' -f 1) || true
 elif mount -o remount,rw /;then
-	resize2fs /dev/root
+	resize2fs /dev/root || true
 fi
-mount -o remount,ro /system
-mount -o remount,ro /
+mount -o remount,ro /system || true
+mount -o remount,ro / || true
 
 fixSPL