diff --git a/plug-ins/index.html b/plug-ins/index.html index c6e7063..5588091 100644 --- a/plug-ins/index.html +++ b/plug-ins/index.html @@ -522,7 +522,7 @@ The simplest way to install is either not specify anything in the install< install { collect(compileDependencies).forEach { - copy(it.absolutePath, to("deploy")) + copy(it.file.absolutePath, to("deploy")) } }
install< install { collect(compileDependencies).forEach { - copy(it.absolutePath, to("deploy")) + copy(it.file.absolutePath, to("deploy")) } }
install { collect(compileDependencies).forEach { - copy(it.absolutePath, to("deploy")) + copy(it.file.absolutePath, to("deploy")) } }