From be4ff5b22fbe91c2c335d0b48a93ffa94d3d26f2 Mon Sep 17 00:00:00 2001 From: Bjarne von Horn Date: Tue, 17 Sep 2024 09:19:20 +0200 Subject: [PATCH] Fix typo in bash completition. Fixes #137. --- script/ethercat.bash_completion | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/ethercat.bash_completion b/script/ethercat.bash_completion index c9bfaa83..3734b55b 100644 --- a/script/ethercat.bash_completion +++ b/script/ethercat.bash_completion @@ -19,7 +19,7 @@ _ethercat_completions() { - local ethercat_commands="alias confic crc cstruct data debug domains download eoe foe_read foe_write graph master pdos reg_read reg_write rescan sdos sii_read sii_write slaves soe_read soe_write states upload version xml" + local ethercat_commands="alias config crc cstruct data debug domains download eoe foe_read foe_write graph master pdos reg_read reg_write rescan sdos sii_read sii_write slaves soe_read soe_write states upload version xml" local options="--help --force --quiet --verbose --master " if [ "$COMP_CWORD" -eq 1 ] ; then COMPREPLY=($(compgen -W "$ethercat_commands --help" -- "${COMP_WORDS[1]}"))