From f54b6f5ff4c1bd24c4954f5bcdbaec712d94d91f Mon Sep 17 00:00:00 2001 From: thunderbiscuit Date: Thu, 21 Aug 2025 09:22:57 -0400 Subject: [PATCH] build: add submodule update-to-master just command --- justfile | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/justfile b/justfile index 94deda6..6a9f792 100644 --- a/justfile +++ b/justfile @@ -26,6 +26,14 @@ submodule-init: submodule-reset: git submodule update --force +[group("Submodule")] +[doc("Checkout the bdk-ffi submodule to the latest commit on master.")] +submodule-to-master: + cd ./bdk-ffi/ \ + && git fetch origin \ + && git checkout master \ + && git pull origin master + [group("Test")] [doc("Run all tests.")] test: