Skip to content

Commit 7ac1a35

Browse files
Owenthk123
Owen
authored and
thk123
committed
Change how we check doxygen version
We used to check that we got exactly "1.8.14", but now we get "1.8.16 (b4ba8f5*)", so we just check that it starts with "1.8.16".
1 parent 954dfbf commit 7ac1a35

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/run_doxygen.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Check doxygen version
44
EXPECTED_VERSION="1.8.16"
5-
doxygen --version | grep -x $EXPECTED_VERSION > /dev/null
5+
doxygen --version | grep ^$EXPECTED_VERSION > /dev/null
66
if [ $? -ne 0 ]
77
then
88
echo "WARNING: Using wrong version of doxygen.\

0 commit comments

Comments
 (0)