Fix outdated comment.

This commit is contained in:
Greyson Parrelli
2025-12-31 10:28:01 -05:00
committed by jeffrey-signal
parent 5b3c51013b
commit f4863efb2e

View File

@@ -27,7 +27,7 @@ val canonicalVersionName = "7.68.5"
val currentHotfixVersion = 0
val maxHotfixVersions = 100
// Other than the first offset of 0, we don't want versions to ever end in 0 so that they don't conflict with nightly versions
// We don't want versions to ever end in 0 so that they don't conflict with nightly versions
val possibleHotfixVersions = (0 until maxHotfixVersions).toList().filter { it % 10 != 0 }
val keystores: Map<String, Properties?> = mapOf("debug" to loadKeystoreProperties("keystore.debug.properties"))