build(modules): name the output `cachedModules`

A noun phrase is better than a verb for a directory name.
develop
Kevin Turner 2021-02-04 11:15:51 -08:00
parent 1c23768366
commit 78253eae6e
3 changed files with 3 additions and 3 deletions

2
.gitignore vendored
View File

@ -72,7 +72,7 @@ Thumbs.db
/configs/
/screenshots/
/logs/
/cacheModules/
/cachedModules/
/terasology-server/
/terasology-2ndclient/
/terasology-3rdclient/

View File

@ -33,7 +33,7 @@ public final class PathManager {
private static final String LOG_DIR = "logs";
private static final String SHADER_LOG_DIR = "shaders";
private static final String MODULE_DIR = "modules";
private static final String MODULE_CACHE_DIR = "cacheModules";
private static final String MODULE_CACHE_DIR = "cachedModules";
private static final String SCREENSHOT_DIR = "screenshots";
private static final String NATIVES_DIR = "natives";
private static final String CONFIGS_DIR = "configs";

View File

@ -11,7 +11,7 @@ plugins {
}
@Suppress("PropertyName")
val CACHE_MODULES_DIR = rootProject.file("cacheModules")
val CACHE_MODULES_DIR = rootProject.file("cachedModules")
javaPlatform {
allowDependencies()