From ca1b2afd11debcc78170e80add9437f7cc7c92b8 Mon Sep 17 00:00:00 2001 From: Kevin Zhuang Date: Tue, 25 Aug 2020 08:21:25 +1000 Subject: [PATCH] fix: comply with shellcheck --- dotbare | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotbare b/dotbare index d4943c3..05906a1 100755 --- a/dotbare +++ b/dotbare @@ -43,7 +43,7 @@ Available commands: } function list_dotbare_commands() { - find "${mydir}"/scripts/* -type f \ + find "${mydir}"/scripts/* -type f -print0 \ | xargs -I __ basename __ \ | fzf --no-multi --header='Available commands' --preview="${mydir}/dotbare {} -h" \ | xargs -I __ "${mydir}"/dotbare __ -h