From 0fd1d0ec857e015be92913e1c2e98ac446731bf9 Mon Sep 17 00:00:00 2001 From: Tino Vazquez Date: Tue, 13 Mar 2012 12:56:53 +0100 Subject: [PATCH] Avoid unneeded errors deleting non existent files in install.sh --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index d5de5583f0..b36e70d26c 100755 --- a/install.sh +++ b/install.sh @@ -1453,7 +1453,7 @@ if [ "$UNINSTALL" = "no" ] ; then done # Remove old migrators - rm $LIB_LOCATION/ruby/onedb/*.rb + rm $LIB_LOCATION/ruby/onedb/*.rb &> /dev/null fi # --- Install/Uninstall files ---