diff options
author | Markus Heiser <markus.heiser@darmarit.de> | 2022-01-18 12:27:42 +0100 |
---|---|---|
committer | Markus Heiser <markus.heiser@darmarit.de> | 2022-01-18 12:27:42 +0100 |
commit | fea9ad7927aa3225f985c4c2b8b2f9c584f2fff6 (patch) | |
tree | dc8e1fceb4501ed8f6787417bd8dabd0484dd2ea /manage | |
parent | b972df255a76e043522c9e4f44cbbcaa6b34df41 (diff) | |
download | searxng-fea9ad7927aa3225f985c4c2b8b2f9c584f2fff6.tar.gz searxng-fea9ad7927aa3225f985c4c2b8b2f9c584f2fff6.zip |
[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>
Diffstat (limited to 'manage')
-rwxr-xr-x | manage | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |