Removing overkill double-checking of return code in is_mountpoint predicate.
authorTails developers <amnesia@boum.org>
Sun, 8 Apr 2012 18:26:49 +0000 (20:26 +0200)
committerDaniel Baumann <daniel@debian.org>
Sun, 8 Apr 2012 20:50:36 +0000 (22:50 +0200)
scripts/live-helpers

index c6feefe..d73f44d 100644 (file)
@@ -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}/..") ]
 }