aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Kristóf Marussy <kristof@marussy.com>2023-08-17 20:53:30 +0200
committerLibravatar Kristóf Marussy <kristof@marussy.com>2023-08-17 20:53:52 +0200
commit9c2be6bbc18e74c6c1e989743499e23930cc9284 (patch)
tree17893a067259bcc7c3bbecf5997c2df3869ec970
parentfix: more precise new object types (diff)
downloadrefinery-9c2be6bbc18e74c6c1e989743499e23930cc9284.tar.gz
refinery-9c2be6bbc18e74c6c1e989743499e23930cc9284.tar.zst
refinery-9c2be6bbc18e74c6c1e989743499e23930cc9284.zip
fix: typo in language-web build script
-rw-r--r--subprojects/language-web/build.gradle.kts5
1 files changed, 2 insertions, 3 deletions
diff --git a/subprojects/language-web/build.gradle.kts b/subprojects/language-web/build.gradle.kts
index 20e5780b..547cb089 100644
--- a/subprojects/language-web/build.gradle.kts
+++ b/subprojects/language-web/build.gradle.kts
@@ -62,9 +62,8 @@ tasks {
62 classpath(mainRuntimeClasspath) 62 classpath(mainRuntimeClasspath)
63 mainClass.set(application.mainClass) 63 mainClass.set(application.mainClass)
64 standardInput = System.`in` 64 standardInput = System.`in`
65 val baseResource = webapp.incoming.artifacts.artifactFiles.first() 65 environment("BASE_RESOURCE", webapp.singleFile)
66 environment("BASE_RESOURCE", baseResource)
67 group = "run" 66 group = "run"
68 description = "Start a Jetty web server serving the Xtex API and assets." 67 description = "Start a Jetty web server serving the Xtext API and assets."
69 } 68 }
70} 69}