forked from radixdlt/radixdlt-scrypto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
format.sh
executable file
·30 lines (24 loc) · 866 Bytes
/
format.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/bin/bash
set -e
cd "$(dirname "$0")"
# Format all main package crates
(set -x; cargo fmt)
# Format the simulator crate
(set -x; cd simulator; cargo fmt)
(
find "assets/blueprints" -mindepth 2 -maxdepth 2 -type f \( -name Cargo.toml \) -print \
| xargs -I '{}' bash -c "set -x; cargo fmt --manifest-path {}"
)
(
find "examples" -mindepth 2 -maxdepth 2 -type f \( -name Cargo.toml \) -print \
| xargs -I '{}' bash -c "set -x; cargo fmt --manifest-path {}"
)
(
find "radix-engine-tests/tests/blueprints" -mindepth 2 -maxdepth 2 -type f \( -name Cargo.toml \) -print \
| xargs -I '{}' bash -c "set -x; cargo fmt --manifest-path {}"
)
(
find "simulator/tests" -mindepth 2 -maxdepth 2 -type f \( -name Cargo.toml \) -print \
| xargs -I '{}' bash -c "set -x; cargo fmt --manifest-path {}"
)
echo "All packages have been formatted."