2f2720263f
Take out the input coalescing from `vesad` into `inputd`. Signed-off-by: Anhad Singh <andypython@protonmail.com>
18 lines
254 B
Bash
Executable File
18 lines
254 B
Bash
Executable File
#!/usr/bin/bash
|
|
|
|
function fmt() {
|
|
for dir in "$@"
|
|
do
|
|
pushd $dir
|
|
printf "\e[1;32mFormatting\e[0m $dir\n"
|
|
cargo fmt
|
|
popd
|
|
done
|
|
}
|
|
|
|
fmt virtio-core \
|
|
virtio-netd \
|
|
virtio-blkd \
|
|
virtio-gpud \
|
|
inputd
|