From a6bb4149992d6d416ea58f102cb8539ce106de7a Mon Sep 17 00:00:00 2001 From: Tails developers Date: Sun, 8 Apr 2012 20:26:49 +0200 Subject: [PATCH] Removing overkill double-checking of return code in is_mountpoint predicate. --- scripts/live-helpers | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/scripts/live-helpers b/scripts/live-helpers index c6feefe..d73f44d 100644 --- a/scripts/live-helpers +++ b/scripts/live-helpers @@ -1589,10 +1589,5 @@ is_mountpoint () { directory="$1" - if [ $(stat -fc%d:%D "${directory}") != $(stat -fc%d:%D "${directory}/..") ] - then - return 0 - else - return 1 - fi + [ $(stat -fc%d:%D "${directory}") != $(stat -fc%d:%D "${directory}/..") ] } -- 2.1.4