Skip to content

Commit

Permalink
[scripts] remove services from clang paths
Browse files Browse the repository at this point in the history
Summary:
Discovered those logs:
```
find: ‘services/lib/src’: No such file or directory
find: ‘services/tunnelbroker/test’: No such file or directory
find: ‘services/backup/test’: No such file or directory
find: ‘services/blob/test’: No such file or directory
```
There is no C++ code in services anymore.

Test Plan: `yarn clang-format-all`.

Reviewers: bartek, michal

Reviewed By: bartek

Subscribers: ashoat, tomek

Differential Revision: https://phab.comm.dev/D9880
  • Loading branch information
xsanm committed Nov 15, 2023
1 parent a46af06 commit b3f89ed
Showing 1 changed file with 0 additions and 28 deletions.
28 changes: 0 additions & 28 deletions scripts/get_clang_paths.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,34 +6,6 @@ const clangPaths = [
extensions: ['h', 'cpp'],
excludes: ['_generated'],
},
{
path: 'services/lib/src',
extensions: ['cpp', 'h'],
},
{
path: 'services/tunnelbroker/src',
extensions: ['cpp', 'h'],
},
{
path: 'services/tunnelbroker/test',
extensions: ['cpp', 'h'],
},
{
path: 'services/backup/src',
extensions: ['cpp', 'h'],
},
{
path: 'services/backup/test',
extensions: ['cpp', 'h'],
},
{
path: 'services/blob/src',
extensions: ['cpp', 'h'],
},
{
path: 'services/blob/test',
extensions: ['cpp', 'h'],
},
{
path: 'native/android/app/src/cpp',
extensions: ['cpp', 'h'],
Expand Down

0 comments on commit b3f89ed

Please sign in to comment.