commit 54f4bae4c1ec10cf60eab5594d196cf47c53966f
parent d29d2ec3a9e8143af552806778590a64328a9db1
Author: Nathaniel Chappelle <nathaniel@chappelle.dev>
Date: Thu, 5 Feb 2026 17:13:58 -0800
fixing repo path
Diffstat:
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/listen-page-bot/bot.py b/listen-page-bot/bot.py
@@ -129,6 +129,7 @@ async def cancel(update: Update, context: ContextTypes.DEFAULT_TYPE):
return ConversationHandler.END
if __name__ == '__main__':
+ repo_path = REPO_PATH
subprocess.run(["git", "fetch", "origin", "." ], cwd=repo_path, check=True)
subprocess.run(["git", "pull", "."], cwd=repo_path, check=True)