Update configuration paths for signing and Crowdin

Move local config files from `~/.appconfig/` to `~/.config/projects/`.
This commit is contained in:
darken
2026-02-14 15:36:16 +01:00
parent 86d3f3bc61
commit e780fd17d2
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -35,7 +35,7 @@ android {
}
signingConfigs {
val basePath = File(System.getProperty("user.home"), ".appconfig/${projectConfig.packageName}")
val basePath = File(System.getProperty("user.home"), ".config/projects/${projectConfig.packageName}")
create("releaseFoss") {
setupCredentials(File(basePath, "signing-foss.properties"))
}
+1 -1
View File
@@ -1,4 +1,4 @@
#!/bin/sh
export CROWDIN_PERSONAL_TOKEN=`cat ~/.appconfig/eu.darken.capod/crowdin.key`
export CROWDIN_PERSONAL_TOKEN=`cat ~/.config/projects/eu.darken.capod/crowdin.key`
alias crowdin-cli='java -jar crowdin-cli.jar'
crowdin-cli "$@"