From d32eaf94ac336725f272cee1ef93397e2a984405 Mon Sep 17 00:00:00 2001 From: Petr Viktorin Date: Thu, 11 Jun 2026 13:20:49 +0200 Subject: [PATCH 1/2] Make `make git-update-requirements` more portable --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 97cb106e..42a10063 100644 --- a/Makefile +++ b/Makefile @@ -87,7 +87,7 @@ git-update-requirements: git pull git switch -c reqs main make regen-requirements - git ci -a -m "Run make regen-requirements" + git commit -a -m "Run make regen-requirements" .PHONY: help help : Makefile From 6a3b60552056b478744dfc74f7a476b00ed78f57 Mon Sep 17 00:00:00 2001 From: Zachary Ware Date: Sun, 9 Nov 2025 18:24:02 -0600 Subject: [PATCH 2/2] Adjust buildbot.sh script to work locally --- buildbot.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildbot.sh b/buildbot.sh index 7b3d2fd1..37ea3fd2 100755 --- a/buildbot.sh +++ b/buildbot.sh @@ -1,2 +1,2 @@ #!/bin/sh -exec /srv/buildbot/venv/bin/buildbot $@ +exec $(dirname $0)/venv/bin/buildbot $@