From 26c980b86e9f65c9fbb13ddd91273aa21d9172c4 Mon Sep 17 00:00:00 2001 From: AkriliksKotya Date: Thu, 27 Nov 2025 18:03:34 +0500 Subject: [PATCH] update command changes --- c/update.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/c/update.py b/c/update.py index d243b1b..8303792 100644 --- a/c/update.py +++ b/c/update.py @@ -21,7 +21,7 @@ class Update(commands.Cog): channel = self.bot.get_channel(int(res)) await channel.send('restarting...') try: - subprocess.run(["git pull --rebase origin main"],capture_output=True) + subprocess.run(["git", "pull", "--rebase", "origin", "main"],capture_output=True) except: await channel.send('restart fail') return