mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-19 03:58:08 +00:00
11 lines
394 B
Bash
Executable file
11 lines
394 B
Bash
Executable file
#!/bin/bash
|
|
|
|
packages='@JAVADOC_PACKAGES@'
|
|
classpaths='@JAVADOC_CLASSPATHS@'
|
|
title='@JAVADOC_TITLE@'
|
|
javaref='@JAVADOC_JAVA_REFERENCE@'
|
|
outputdir='@JAVADOC_OUTPUT_DIR@'
|
|
|
|
@Java_JAVADOC_EXECUTABLE@ ${packages} -classpath ${classpaths} -doctitle "${title}" -link ${javaref} -d ${outputdir} 2>&1 | tee @JAVADOC_LOGFILE@
|
|
grep -E '^[0-9]{1,3} errors?' @JAVADOC_LOGFILE@ &> /dev/null && exit 1
|
|
exit 0
|