We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ad9701 commit f54b6f5Copy full SHA for f54b6f5
justfile
@@ -26,6 +26,14 @@ submodule-init:
26
submodule-reset:
27
git submodule update --force
28
29
+[group("Submodule")]
30
+[doc("Checkout the bdk-ffi submodule to the latest commit on master.")]
31
+submodule-to-master:
32
+ cd ./bdk-ffi/ \
33
+ && git fetch origin \
34
+ && git checkout master \
35
+ && git pull origin master
36
+
37
[group("Test")]
38
[doc("Run all tests.")]
39
test:
0 commit comments