Skip to content
Snippets Groups Projects
Commit 49643f7f authored by Christian Engwer's avatar Christian Engwer
Browse files

add missing parentheses

[[Imported from SVN: r5685]]
parent 28e22d6c
No related branches found
No related tags found
No related merge requests found
#!/bin/sh #!/bin/sh
set -x
export DOXYOUT=${1:-doc/doxygen/Doxyfile.in} export DOXYOUT=${1:-doc/doxygen/Doxyfile.in}
shift shift
export DOXYDIR=doc/doxygen/ export DOXYDIR=doc/doxygen/
...@@ -115,7 +117,7 @@ if ! find_doxystyle; then ...@@ -115,7 +117,7 @@ if ! find_doxystyle; then
fi fi
# make sure that there is at least one Doxylocal file # make sure that there is at least one Doxylocal file
if ! test_doxylocal "${@:-.}" || [ $# -eq 0 ]; then if ! (test_doxylocal "${@:-.}" || [ $# -eq 0 ]); then
echo "Error: you didn't supply any valid Doxylocal file" echo "Error: you didn't supply any valid Doxylocal file"
exit 1 exit 1
fi fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment