Skip to content
This repository has been archived by the owner on Oct 12, 2021. It is now read-only.

Commit

Permalink
Fix typo breaking compatibility mode builds (#323)
Browse files Browse the repository at this point in the history
  • Loading branch information
johndevs committed Jan 27, 2020
1 parent e87af91 commit e6da69e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -469,7 +469,7 @@ class TranspileDependenciesTask extends DefaultTask {
if (!modules.isEmpty()) {
LOGGER.severe('Javascript modules is not supported in compatibility mode.')
LOGGER.severe('The following classes contains @JSModule annotations')
modules.fineach { k, v -> LOGGER.severe("\t$v") }
modules.each { k, v -> LOGGER.severe("\t$v") }
LOGGER.severe('Please use HTML imports instead.')
throw new GradleException('Unsupported @JavascriptModule annotations found in compatibility mode. ' +
RUN_WITH_INFO_FOR_MORE_INFORMATION)
Expand Down

0 comments on commit e6da69e

Please sign in to comment.