diff options
| -rw-r--r-- | scripts/live-helpers | 7 |
1 files changed, 1 insertions, 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}/..") ] } |
