From a7991ac92721b4969e4684e0967570ed76bb0ccd Mon Sep 17 00:00:00 2001 From: Bastian Dehn Date: Sun, 16 Aug 2026 20:31:03 +0200 Subject: [PATCH] fix shellcheck issue --- src/backupmount | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/backupmount b/src/backupmount index 408ba8a..c9b0fe9 100755 --- a/src/backupmount +++ b/src/backupmount @@ -34,19 +34,19 @@ exists_config_file() exists_block_device() { local device="$1" - [ -b "$device" ] || return $? + [ -b "$device" ] } exists_partition() { local partition="$1" - [ -b "$partition" ] || return $? + [ -b "$partition" ] } exists_key() { local key="$1" - [ -f "$key" ] || return $? + [ -f "$key" ] } mount_partition() -- 2.47.3