From baacf638e72e8aae6d25fe194b3e41ab9bb6e3b1 Mon Sep 17 00:00:00 2001 From: Valerie Wolfe Date: Mon, 15 Jul 2024 13:35:35 -0400 Subject: [PATCH] hug: added just scripts --- hug/justfile | 10 ++++++++++ justfile | 1 + 2 files changed, 11 insertions(+) create mode 100644 hug/justfile diff --git a/hug/justfile b/hug/justfile new file mode 100644 index 0000000..e8e9a03 --- /dev/null +++ b/hug/justfile @@ -0,0 +1,10 @@ + +alias b := build +alias i := install + +build: + cargo build --release + +install DIR: build + cp ./target/release/hug "{{DIR}}/hug" + diff --git a/justfile b/justfile index 6297e94..326a64b 100644 --- a/justfile +++ b/justfile @@ -11,6 +11,7 @@ install TARGET='all' DIR="~/.bin/": just install scripts {{DIR}} just install dos-var {{DIR}} just install env-share {{DIR}} + just install hug {{DIR}} just install mkwin {{DIR}} just install path-convert {{DIR}} just install qdls {{DIR}}