diff --git a/format.ps1 b/format.ps1 index 0509d2640..2de1f6578 100644 --- a/format.ps1 +++ b/format.ps1 @@ -1,4 +1,4 @@ ./src.ps1 | ForEach-Object { echo $_ - clang-format -style=file -i $_ + clang-format -verbose -style=file -i $_ } \ No newline at end of file diff --git a/format.sh b/format.sh index f361ffac3..6788af57a 100755 --- a/format.sh +++ b/format.sh @@ -1,2 +1,2 @@ #!/bin/sh -./src.sh | grep -v CxCli.h | xargs -n 1 clang-format -style=file -i +./src.sh | grep -v CxCli.h | xargs -n 1 clang-format -verbose -style=file -i