Skip to content

Commit e715414

Browse files
authored
Merge pull request #526 from rustaceanrob/11-22-just
Update `justfile` commands
2 parents d01851e + 7bfdefc commit e715414

File tree

1 file changed

+5
-8
lines changed

1 file changed

+5
-8
lines changed

justfile

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
set ignore-comments
22

3-
# Hidden default lists all available recipies.
3+
# Hidden default lists all available recipes.
44
_default:
55
@just --list --list-heading $'KYOTO\n'
66

@@ -29,13 +29,13 @@ _test-integration:
2929
_test-sync:
3030
cargo run --example bitcoin --release
3131

32-
# Test feature flag matrix compatability.
32+
# Test feature flag matrix compatibility.
3333
_test-features:
3434
# Build and test with all features, no features, and some combinations.
3535
cargo test --lib --all-features
3636
cargo test --lib --no-default-features
3737

38-
# Test that minimum versions of dependency contraints are still valid.
38+
# Test that minimum versions of dependency constraints are still valid.
3939
_test-min-versions:
4040
just _delete-lockfile
4141
cargo +nightly check --all-features -Z direct-minimal-versions
@@ -50,13 +50,10 @@ _test-msrv:
5050
example name="signet":
5151
cargo run --example {{name}} --release
5252

53-
# Delete unused files or branches: data, lockfile, branches
54-
delete item="data":
53+
# Delete unused files or branches: lockfile, branches
54+
delete item="branches":
5555
just _delete-{{item}}
5656

57-
_delete-data:
58-
rm -rf light_client_data
59-
6057
_delete-lockfile:
6158
rm -f Cargo.lock
6259

0 commit comments

Comments
 (0)