Skip to content
This repository has been archived by the owner on May 28, 2024. It is now read-only.

Fix stack overflow of bash when copying tf headers #92

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tf/tf_configure.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ def _symlink_genrule_for_dir(
dest_dir = "abc"
genrule = _genrule(
genrule_name,
" && ".join(command),
"\n".join(command),
"\n".join(outs),
)
return genrule
Expand Down