From 0d1931030f4fbc30627156eb04663d7754552433 Mon Sep 17 00:00:00 2001 From: Eugene Blikh Date: Thu, 26 Mar 2026 08:58:29 +0300 Subject: [PATCH] feat: add ability for local install --- justfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/justfile b/justfile index 2cee0e699e89be4c57c4c5464a374ddcbb06bd5a..a94559f7261bc37081f0087f010be03999e1bf21 100644 --- a/justfile +++ b/justfile @@ -4,6 +4,9 @@ module_path := "sourcecraft.dev/bigbes/confluence-md-utilities" install: go install {{module_path}}/cmd/mdcx@latest +local-install: + go install ./cmd/mdcx + # Build mdcx binary build: go build -o mdcx ./cmd/mdcx