From 181e14e7660c23ce20208b18dab7e021e7251e54 Mon Sep 17 00:00:00 2001 From: Joseph Nuthalapati Date: Wed, 19 Oct 2022 10:40:06 +0530 Subject: [PATCH] Add a diagnostic to check if `task` alias works --- bb.edn | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/bb.edn b/bb.edn index 350ba7e..f285ffa 100644 --- a/bb.edn +++ b/bb.edn @@ -1,6 +1,9 @@ {:paths ["scripts"] :tasks - {gup {:requires ([git :refer [git-pull-rebase-branch]]) + {test {:doc "Test whether the 'task' alias is working." + :task (println "Yes, it's working!")} + + gup {:requires ([git :refer [git-pull-rebase-branch]]) :doc "Do a git pull and rebase branch with master in a given directory." :task (git-pull-rebase-branch (get (into [] *command-line-args*) 0))} -- 2.43.0