From b5e3d5af207a51416e4f1210e760caaddf41f9e8 Mon Sep 17 00:00:00 2001 From: Fuwn Date: Mon, 26 Jan 2026 10:18:32 +0000 Subject: chore(justfile): Add install and clean tasks --- justfile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/justfile b/justfile index b1530db..c8700b6 100644 --- a/justfile +++ b/justfile @@ -12,3 +12,9 @@ run *arguments="": build: go build -o {{ name }} ./cmd/{{ name }} + +install path="~/.local/bin" *arguments="": + install -Dm755 {{ name }} {{ path }}/{{ name }} + +clean: + rm -rf {{ name }} -- cgit v1.2.3