Auto-commit after successful build: update app gameplay/UI, improve build setup

Changed files:\napp/build.gradle.kts
app/src/main/java/solutions/tretter/githugandroid/levels/CoreLevels.kt
This commit is contained in:
Joe Tretter
2026-04-24 15:19:27 -05:00
parent e089eaa272
commit 51cdc05f40
2 changed files with 3 additions and 3 deletions

View File

@@ -18,7 +18,7 @@ internal fun coreLevels(): List<Level> = listOf(
commandSuggestions = listOf("git config user.name GitHug", "git config user.email githug@example.com"),
setup = { RepoState(initialized = true, branches = mapOf("master" to 0)) },
validator = repoPredicate { repo ->
repo.config["user.name"] != null && repo.config["user.email"] != null
repo.config.containsKey("user.name") && repo.config.containsKey("user.email")
},
),
level(