We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c3d26b commit 0a5025eCopy full SHA for 0a5025e
make/ex_doc_wrapper.in
@@ -4,7 +4,10 @@ ARGS=("$@")
4
5
set -eo pipefail {0}
6
7
-EX_DOC=$(command -v ex_doc || true)
+## If EX_DOC is not set to a file, we search the PATH for it using command -v
8
+if [ ! -f "${EX_DOC}" ]; then
9
+ EX_DOC=$(command -v ex_doc || true)
10
+fi
11
12
if [ -z "${EX_DOC}" ]; then
13
echo -n "Could not find ex_doc! "
0 commit comments