From 4747f50f5240510b219f681db4e1b6386d1a85df Mon Sep 17 00:00:00 2001 From: Bert Belder Date: Sun, 26 Aug 2018 01:36:21 +0200 Subject: [PATCH] tools/format: fix clang-format glob pattern --- tools/format.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/format.py b/tools/format.py index 85dbf2d4d7..af8cc5e4cc 100755 --- a/tools/format.py +++ b/tools/format.py @@ -13,7 +13,7 @@ rustfmt_config = os.path.join(tools_path, "rustfmt.toml") os.chdir(root_path) run([clang_format_path, "-i", "-style", "Google"] + - find_exts("src", ".cc", ".h")) + find_exts("libdeno", ".cc", ".h")) for fn in ["BUILD.gn", ".gn"] + find_exts("build_extra", ".gn", ".gni"): run(["third_party/depot_tools/gn", "format", fn], env=google_env())