From d1900f1482a9cdd0703154f2b16a31bbea9b0565 Mon Sep 17 00:00:00 2001 From: Saverio Miroddi Date: Tue, 27 Apr 2021 18:29:10 +0200 Subject: [PATCH] Fix Shellcheck complaint about not following the hotswap script --- install-zfs.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/install-zfs.sh b/install-zfs.sh index 60f14f3..96bfd68 100755 --- a/install-zfs.sh +++ b/install-zfs.sh @@ -167,6 +167,7 @@ function invoke { # function hot_swap_script { if [[ -f $c_hotswap_file ]]; then + # shellcheck disable=1090 # can't follow; the file might not exist anyway. source "$c_hotswap_file" fi }