TINKERPOP-1612 The old plugins are gone so we no longer need to filter when generating docs
Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/d3ce7e59 Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/d3ce7e59 Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/d3ce7e59 Branch: refs/heads/TINKERPOP-1612 Commit: d3ce7e59e7178effcfa3ff70cdbfa58450553cb5 Parents: 6f00c5c Author: Stephen Mallette <[email protected]> Authored: Thu Feb 23 13:37:53 2017 -0500 Committer: Stephen Mallette <[email protected]> Committed: Tue Feb 28 06:32:39 2017 -0500 ---------------------------------------------------------------------- docs/preprocessor/install-plugins.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/d3ce7e59/docs/preprocessor/install-plugins.sh ---------------------------------------------------------------------- diff --git a/docs/preprocessor/install-plugins.sh b/docs/preprocessor/install-plugins.sh index 7c58aba..990dbe4 100755 --- a/docs/preprocessor/install-plugins.sh +++ b/docs/preprocessor/install-plugins.sh @@ -39,7 +39,7 @@ while [ ${i} -lt ${pluginsCount} ]; do for part in $(tr '-' '\n' <<< ${pluginName}); do className="${className}$(tr '[:lower:]' '[:upper:]' <<< ${part:0:1})${part:1}" done - pluginClassFile=$(find . -name "${className}Plugin.java" | grep plugin) + pluginClassFile=$(find . -name "${className}Plugin.java") pluginClass=`sed -e 's@.*src/main/java/@@' -e 's/\.java$//' <<< ${pluginClassFile} | tr '/' '.'` installed=`grep -c "${pluginClass}" ${CONSOLE_HOME}/ext/plugins.txt` if [ ${installed} -eq 0 ]; then
