Browse Source

[fix] issue reported by: make test.shell

    $ make test.shell
    ./manage line 716:
    build_msg TEST "[reST markup] ${RST_FILES[@]}""
                                  ^-------------^ SC2145: Argument mixes string and array. Use * or separate argument.

Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
Markus Heiser 3 years ago
parent
commit
fea9ad7927
1 changed files with 1 additions and 1 deletions
  1. 1 1
      manage

+ 1 - 1
manage

@@ -713,7 +713,7 @@ test.robot() {
 }
 
 test.rst() {
-    build_msg TEST "[reST markup] ${RST_FILES[@]}"
+    build_msg TEST "[reST markup] ${RST_FILES[*]}"
     for rst in "${RST_FILES[@]}"; do
         pyenv.cmd rst2html.py --halt error "$rst" > /dev/null || die 42 "fix issue in $rst"
     done