commit:     190fdd480d33ef378167a15a8fb4136202445805
Author:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 19 01:20:41 2020 +0000
Commit:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Sun Apr 19 01:20:41 2020 +0000
URL:        https://gitweb.gentoo.org/proj/eselect-rust.git/commit/?id=190fdd48

rust.eselect.in: make shellcheck happy

Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>

 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"

Reply via email to