Skip to content

Commit 46c685c

Browse files
authored
Fix typo in error message
1 parent dc3a7cb commit 46c685c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

project/src/live.server.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ object LiveServer extends IOApp:
260260
val indexLessFile = styles / "index.less"
261261
(for
262262
indexLessExists <- Files[IO].exists(indexLessFile)
263-
_ <- IO.raiseUnless(indexLessExists)(CliValidationError(s"index.html doesn't exist in $styles"))
263+
_ <- IO.raiseUnless(indexLessExists)(CliValidationError(s"index.less doesn't exist in $styles"))
264264
indexLessIsAFile <- Files[IO].isRegularFile(indexLessFile)
265265
_ <- IO.raiseUnless(indexLessIsAFile)(CliValidationError(s"$indexLessFile is not a file"))
266266
yield IndexHtmlConfig.StylesOnly(styles).some).toResource

0 commit comments

Comments
 (0)