From 190fdd480d33ef378167a15a8fb4136202445805 Mon Sep 17 00:00:00 2001 From: Thomas Deutschmann Date: Sun, 19 Apr 2020 03:20:41 +0200 Subject: rust.eselect.in: make shellcheck happy Signed-off-by: Thomas Deutschmann --- rust.eselect.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/rust.eselect.in b/rust.eselect.in index 1b33280..c3ee046 100644 --- a/rust.eselect.in +++ b/rust.eselect.in @@ -215,7 +215,7 @@ describe_cleanup() { } do_cleanup() { - [[ -z ${@} ]] || die -q "This function does not expect any arguments" + [[ -z ${*} ]] || die -q "This function does not expect any arguments" # Do we need to clean up? local missing_symlinks=( $(find_missing_broken_symlinks) ) @@ -283,7 +283,7 @@ describe_show() { } do_show() { - [[ -z "${@}" ]] || die -q "Too many parameters" + [[ -z "${*}" ]] || die -q "Too many parameters" write_list_start "Current Rust implementation:" local targets=( $(find_targets) ) @@ -308,7 +308,7 @@ describe_update_options() { do_update() { local if_unset="0" - while [[ $# > 0 ]]; do + while [[ $# -gt 0 ]]; do case "$1" in --if-unset) if_unset="1" -- cgit v1.2.3-65-gdbad