forked from Ponysearch/Ponysearch
[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>
This commit is contained in:
parent
b972df255a
commit
fea9ad7927
1 changed files with 1 additions and 1 deletions
2
manage
2
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
|
||||
|
|
Loading…
Reference in a new issue