Skip to content

Commit

Permalink
chore: Don't auto add /sync to in-place configs
Browse files Browse the repository at this point in the history
  • Loading branch information
0ffz committed May 27, 2024
1 parent e95606a commit 0bb8215
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
kotlin.code.style=official
version=3.0.0-alpha.0
version=3.0.0-alpha.1
2 changes: 1 addition & 1 deletion src/main/kotlin/com/mineinabyss/keepup/config/Inventory.kt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class Inventory(
val global = configs["global"]
return listOfNotNull(global) + names.map {
configs[it] ?: ConfigDefinition(
copyPaths = listOf("$it/sync"),
copyPaths = listOf(it),
)
}
}
Expand Down

0 comments on commit 0bb8215

Please sign in to comment.