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

fix dunedoxynize for Ubuntu-bash

[[Imported from SVN: r5700]]
parent 7ec942f0
No related branches found
No related tags found
No related merge requests found
......@@ -157,9 +157,12 @@ if ! find_doxystyle; then
fi
# drop the parameter of the output file
shift
if [ $# -gt 0 ]; then
shift
fi
# 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"
exit 1
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