bots

A place where I keep all my bots.
Log | Files | Refs

commit 527b38492fa8605f2555452ee7c45ba461e324f5
parent 0f9cce088e53da4d878f24d6e0eb3a4940cc54b3
Author: Nathaniel Chappelle <nathaniel@chappelle.dev>
Date:   Thu, 14 May 2026 12:28:27 -0700

remove make deploy

Diffstat:
Mlisten-page-bot/bot.py | 5-----
1 file changed, 0 insertions(+), 5 deletions(-)

diff --git a/listen-page-bot/bot.py b/listen-page-bot/bot.py @@ -155,11 +155,6 @@ def run_local_deploy(repo_path): # 2. Git Push # (Works instantly if remote is a local path or SSH key has no passphrase) subprocess.run(["git", "push"], cwd=repo_path, check=True) - - # 3. Make Deploy - # This calls the Makefile which uses 'doas rsync' - subprocess.run(["make", "deploy"], cwd=repo_path, check=True) - return True except subprocess.CalledProcessError as e: print(f"Deployment failed at: {e.cmd}")