mirror of
https://github.com/SuperBFG7/ympd
synced 2025-01-06 23:50:26 +00:00
11 lines
224 B
Bash
11 lines
224 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
repo="$(git rev-parse --show-toplevel)"
|
||
|
|
||
|
pushd "$repo"
|
||
|
prettier --write .
|
||
|
for i in http_server.c http_server.h json_encode.h mpd_client.c mpd_client.h ympd.c; do
|
||
|
clang-format -i -style=file "src/$i"
|
||
|
done
|
||
|
popd
|