-make it so that uninstaller doesn't exit on first error. Should try to remove everything.

This commit is contained in:
Martin Konecny 2011-11-14 23:55:23 -05:00
parent e3395ae1e5
commit 3c6410aebd
3 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
#!/bin/bash -e
#!/bin/bash
#Check if root user
if [ `whoami` != 'root' ]; then

View File

@ -1,4 +1,4 @@
#!/bin/bash -e
#!/bin/bash
#-e Causes bash script to exit if any of the installers
#return with a non-zero return value.

View File

@ -1,4 +1,4 @@
#!/bin/bash -e
#!/bin/bash
#-e Causes bash script to exit if any of the installers
#return with a non-zero return value.