Reduce number of warnings for Groovy

This commit is contained in:
Radon Rosborough 2020-07-08 20:52:50 -06:00
parent b3fb71f501
commit 2f3f018ba3
1 changed files with 2 additions and 2 deletions

View File

@ -446,9 +446,9 @@ func main() {
groovy: {
name: "Groovy",
monacoLang: "plaintext",
repl: "groovysh",
repl: `JAVA_OPTS="-Djava.util.prefs.systemRoot=$PWD/.java -Djava.util.prefs.userRoot=$PWD/.java/.userPrefs" groovysh`,
main: "main.groovy",
run: "groovysh main.groovy",
run: `JAVA_OPTS="-Djava.util.prefs.systemRoot=$PWD/.java -Djava.util.prefs.userRoot=$PWD/.java/.userPrefs" groovysh main.groovy`,
template: `print "Hello, world!";
`,
},