
* renamed stats to monitors * added depreciation notices * resorted generics alphaabetically * added monitors * fmt fuzzers * added depreciation note for usermonitor * fmt all fuzzers script * more fmt * renamed some monitor things back to stats * fixed rename
21 lines
421 B
Bash
Executable File
21 lines
421 B
Bash
Executable File
#!/bin/bash
|
|
|
|
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"
|
|
cd "$SCRIPT_DIR/.."
|
|
|
|
# TODO: This should be rewritten in rust, a Makefile, or some platform-independent language
|
|
|
|
echo "Welcome to the happy fmt script. :)"
|
|
echo "[*] Running fmt for the main crates"
|
|
cargo fmt
|
|
|
|
cd fuzzers
|
|
|
|
for fuzzer in *;
|
|
do
|
|
cd $fuzzer
|
|
echo "[*] Running fmt for $fuzzer"
|
|
cargo fmt --all
|
|
cd ..
|
|
done
|