Rename manifest.properties to kotlinManifest.properties to avoid clashing with other resources.

This commit is contained in:
Zalim Bashorov
2014-12-18 14:27:43 +03:00
parent 543141c564
commit 465c4a397e
6 changed files with 7 additions and 7 deletions
@@ -47,7 +47,7 @@ public object LibraryUtils {
var jsStdLib = ""
var jsLib = ""
val manifestProperties = javaClass<LibraryUtils>().getResourceAsStream("/manifest.properties")
val manifestProperties = javaClass<LibraryUtils>().getResourceAsStream("/kotlinManifest.properties")
if (manifestProperties != null) {
try {
val properties = Properties()
@@ -61,7 +61,7 @@ public object LibraryUtils {
}
else {
LOG.error("Resource 'manifest.properties' not found.")
LOG.error("Resource 'kotlinManifest.properties' not found.")
}
TITLE_KOTLIN_JAVASCRIPT_STDLIB = jsStdLib