From b90143adf7ef3fa37c3f271b17331c290786473d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobi=20Sch=C3=A4fer?= Date: Wed, 18 Mar 2020 10:35:49 +0100 Subject: [PATCH] chg: name of rhino shell task --- build.gradle | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build.gradle b/build.gradle index cd997332..d4d8e0b4 100644 --- a/build.gradle +++ b/build.gradle @@ -182,9 +182,9 @@ task jsdoc(type: Exec) { ignoreExitValue true } -task shell(type: JavaExec) { - def rhinoJar = configurations.library.files.find { f -> - f.name.startsWith('rhino') +task rhinoShell(type: JavaExec) { + def rhinoJar = configurations.library.files.find { jar -> + jar.name.startsWith('rhino') } classpath = files(rhinoJar)