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.
2 parents f90017b + 541891b commit b1358baCopy full SHA for b1358ba
docs-generate
@@ -25,4 +25,11 @@ fi
25
26
DIR="$( cd -P "$( dirname "$0" )"/.. >/dev/null 2>&1 && pwd )"
27
28
-bin/vagrant-exec "bin/phpdoc "$@""
+# If phpdoc bin script installed use that
29
+if [ -e "bin/phpdoc" ]; then
30
+ bin/vagrant-exec "bin/phpdoc "$@""
31
+elif [ -e "bin/phpdoc.php" ]; then
32
+ bin/vagrant-exec "bin/phpdoc.php "$@""
33
+else
34
+ echo "!! Unable to locate the 'phpdoc' bin command. !!"
35
+fi
0 commit comments