diff options
author | Konstantinos Sideris <sideris.konstantin@gmail.com> | 2018-07-17 16:37:25 +0300 |
---|---|---|
committer | Konstantinos Sideris <sideris.konstantin@gmail.com> | 2018-07-17 16:37:25 +0300 |
commit | 0e814da91c8e041897a4c3f7e6e9234bbc7c6f7a (patch) | |
tree | 21f655d30630fe77ba48d07e4b357e2b6c6a5730 /.ci | |
parent | Merge pull request #372 from bebehei/notification (diff) | |
download | nheko-0e814da91c8e041897a4c3f7e6e9234bbc7c6f7a.tar.xz |
Move all files under src/
Diffstat (limited to '.ci')
-rwxr-xr-x | .ci/format.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.ci/format.sh b/.ci/format.sh index 89fa4e88..d87bfb66 100755 --- a/.ci/format.sh +++ b/.ci/format.sh @@ -9,6 +9,6 @@ set -o errexit set -o pipefail set -o nounset -FILES=`find include src -type f -type f \( -iname "*.cc" -o -iname "*.h" \)` +FILES=`find src -type f -type f \( -iname "*.cpp" -o -iname "*.h" \)` clang-format -i $FILES && git diff --exit-code |