Skip to content

Commit 36bf014

Browse files
committed
fix(updater): remove unnecessary --update-all flag from uv sync command
1 parent 67dad6b commit 36bf014

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/korone/modules/sudo/utils.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,5 @@ def generate_changelog(commits: dict[str, CommitInfo]) -> str:
5454

5555

5656
async def perform_update() -> str:
57-
commands = [
58-
"git reset --hard origin/main",
59-
"pybabel compile -d locales -D bot",
60-
"uv sync --update-all",
61-
]
57+
commands = ["git reset --hard origin/main", "pybabel compile -d locales -D bot", "uv sync"]
6258
return "".join([await run_command(command) for command in commands])

0 commit comments

Comments
 (0)