Skip to content

Commit

Permalink
Run buildifier
Browse files Browse the repository at this point in the history
  • Loading branch information
jwnimmer-tri committed Jan 4, 2017
1 parent 955e682 commit a4a313e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tools/fcl.BUILD
Expand Up @@ -47,11 +47,11 @@ genrule(
name = "fclh_genrule",
srcs = glob(["include/**/*.h"]),
outs = ["include/fcl/fcl.h"],
cmd = r"(" + (
r"echo '#pragma once' && " +
r"echo '$(SRCS)' | tr ' ' '\n' | " +
r"sed 's|.*include/\(.*\)|#include \"\1\"|g'"
) + r") > '$@'",
cmd = "(" + (
"echo '#pragma once' && " +
"echo '$(SRCS)' | tr ' ' '\\n' | " +
"sed 's|.*include/\(.*\)|#include \\\"\\1\\\"|g'"
) + ") > '$@'",
visibility = [],
)

Expand Down

0 comments on commit a4a313e

Please sign in to comment.