From bb3212eeb5d96f425f3ba9e78c3345a4ebaa749b Mon Sep 17 00:00:00 2001 From: banteg <4562643+banteg@users.noreply.github.com> Date: Thu, 8 Jan 2026 13:01:50 +0400 Subject: [PATCH] feat: add bundle just recipe --- Justfile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Justfile b/Justfile index cc7399a..31d84cd 100644 --- a/Justfile +++ b/Justfile @@ -3,3 +3,10 @@ check: uv run ruff check . uv run ty check . uv run pytest + +bundle: + #!/usr/bin/env bash + set -euo pipefail + bundle="takopi.git.bundle" + git bundle create "$bundle" --all + open -R "$bundle"