feat: add bundle just recipe

This commit is contained in:
banteg
2026-01-08 13:01:50 +04:00
parent 75d669bdd7
commit bb3212eeb5
+7
View File
@@ -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"