openethereum/fmt.sh

17 lines
360 B
Bash
Raw Normal View History

2016-02-16 10:36:15 +01:00
#!/bin/sh
RUSTFMT="rustfmt --write-mode overwrite"
$RUSTFMT ./ethash/src/lib.rs
2016-03-23 18:20:06 +01:00
$RUSTFMT ./ethcore/src/lib.rs
2016-02-16 10:36:15 +01:00
$RUSTFMT ./evmjit/src/lib.rs
2016-03-23 18:20:06 +01:00
$RUSTFMT ./json/src/lib.rs
$RUSTFMT ./miner/src/lib.rs
2016-02-16 10:36:15 +01:00
$RUSTFMT ./parity/main.rs
2016-03-23 18:20:06 +01:00
$RUSTFMT ./rpc/src/lib.rs
$RUSTFMT ./signer/src/lib.rs
$RUSTFMT ./dapps/src/lib.rs
2016-03-23 18:20:06 +01:00
$RUSTFMT ./sync/src/lib.rs
$RUSTFMT ./util/src/lib.rs
2016-02-16 10:36:15 +01:00