We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c28b39 commit 8bdd702Copy full SHA for 8bdd702
2 files changed
.gitignore
@@ -13,3 +13,4 @@ app_pojavlauncher/.cxx/
13
/jre_lwjgl3glfw/gradle/
14
/jre_lwjgl3glfw/**/build/
15
/jre_lwjgl3glfw/**/.gradle/
16
+/app_pojavlauncher/curseforge_key.txt
app_pojavlauncher/build.gradle
@@ -54,7 +54,7 @@ def getVersionName = {
54
def getCFApiKey = {
55
String key = System.getenv("CURSEFORGE_API_KEY");
56
if(key != null) return key;
57
- File curseforgeKeyFile = new File("./curseforge_key.txt");
+ File curseforgeKeyFile = new File("$projectDir/curseforge_key.txt");
58
if(curseforgeKeyFile.canRead() && curseforgeKeyFile.isFile()) {
59
return curseforgeKeyFile.text;
60
}
0 commit comments