Skip to content

Commit

Permalink
Merge pull request tensorflow#82 from tensorflow/jaeyoo-patch-1
Browse files Browse the repository at this point in the history
Update tf_configure.bzl
  • Loading branch information
jaeyoo authored Feb 17, 2020
2 parents fcce13a + 92e631d commit 9f6bb17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion third_party/tf/tf_configure.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def _read_dir(repository_ctx, src_dir):
# src_files will be used in genrule.outs where the paths must
# use forward slashes.
result = find_result.stdout.replace("\\", "/")
result = result.replace(src_dir, "").splitlines() # hard-coded
result = result.replace(src_dir, "") # hard-coded
else:
find_result = _execute(
repository_ctx,
Expand Down

0 comments on commit 9f6bb17

Please sign in to comment.