mirror of
https://github.com/openwrt/luci.git
synced 2025-12-21 19:14:34 +04:00
build/makedocs.sh: handle relative output directories
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
This commit is contained in:
@@ -7,8 +7,15 @@ topdir=$(pwd)
|
|||||||
exit 1
|
exit 1
|
||||||
}
|
}
|
||||||
|
|
||||||
|
outdir=$(readlink -f "$1")
|
||||||
|
|
||||||
|
mkdir -p "$outdir" || {
|
||||||
|
echo "Unable to mkdir '$outdir'" >&2
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
|
|
||||||
(
|
(
|
||||||
cd "$topdir/build/luadoc/"
|
cd "$topdir/build/luadoc/"
|
||||||
find "$topdir/libs/" "$topdir/modules/" -type f -name '*.lua' -or -name '*.luadoc' | \
|
find "$topdir/libs/" "$topdir/modules/" -type f -name '*.lua' -or -name '*.luadoc' | \
|
||||||
xargs grep -l '@return' | xargs ./doc.lua --no-files -d "$1"
|
xargs grep -l '@return' | xargs ./doc.lua --no-files -d "$outdir"
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user