From c86823a2d4a4152c71faa1c3bab227756232996f Mon Sep 17 00:00:00 2001 From: Erich Eckner Date: Wed, 17 Apr 2019 13:16:36 +0200 Subject: is_same_fs() in lib/archroot.sh should use $1 and $2, not $1 and $1 The old behaviour would always evaluate to true - this is certainly not what that function should do. Signed-off-by: Erich Eckner --- lib/archroot.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/archroot.sh b/lib/archroot.sh index f279603..2c03c82 100644 --- a/lib/archroot.sh +++ b/lib/archroot.sh @@ -42,7 +42,7 @@ is_subvolume() { # return : whether $path_a and $path_b are on the same filesystem ## is_same_fs() { - [[ "$(stat -c %d "$1")" == "$(stat -c %d "$1")" ]] + [[ "$(stat -c %d "$1")" == "$(stat -c %d "$2")" ]] } ## -- cgit v1.2.3-54-g00ecf