diff --git a/ext/system.py b/ext/system.py index 8541f13..5e14498 100644 --- a/ext/system.py +++ b/ext/system.py @@ -138,6 +138,7 @@ async def branch_switch(ctx: lightbulb.Context) -> None: @lightbulb.command("info", "get bot information such as the version, and repository link.", ephemeral=True) @lightbulb.implements(lightbulb.SlashCommand) async def info(ctx: lightbulb.Context) -> None: + await create_subprocess("git", "fetch") # updates with remote git_status = await get_git_status() embed = hikari.Embed(title="About Me!") embed.add_field("Git Repository", config.git_url)