[arch-projects] [devtools] [PATCH] is_same_fs() in lib/archroot.sh should use $1 and $2, not $1 and $1
17 Apr
2019
17 Apr
'19
11:16 a.m.
From: Erich Eckner <git@eckner.net> The old behaviour would always evaluate to true - this is certainly not what that function should do. Signed-off-by: Erich Eckner <git@eckner.net> --- lib/archroot.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/archroot.sh b/lib/archroot.sh index f2796034..2c03c827 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")" ]] } ## -- 2.21.0
2041
Age (days ago)
2041
Last active (days ago)
0 comments
1 participants
participants (1)
-
arch@eckner.net