aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/tools/git
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2018-03-15 15:44:56 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-03-15 15:49:01 -0700
commit1e75c69339da2fbf2c5c5fbeb891243badae7ff8 (patch)
tree81268169bbff6836bfbbd4e9866a1374f597a624 /tensorflow/tools/git
parent6c62e650252ab32f83637a8de6720e73ffeca226 (diff)
Automated g4 rollback of changelist 189231636
PiperOrigin-RevId: 189258641
Diffstat (limited to 'tensorflow/tools/git')
-rwxr-xr-xtensorflow/tools/git/gen_git_source.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/tensorflow/tools/git/gen_git_source.py b/tensorflow/tools/git/gen_git_source.py
index cbcdbf5b80..3630dbd740 100755
--- a/tensorflow/tools/git/gen_git_source.py
+++ b/tensorflow/tools/git/gen_git_source.py
@@ -114,13 +114,6 @@ def configure(src_base_path, gen_path, debug=False):
for target, src in link_map.items():
if src is None:
open(os.path.join(gen_path, target), "w").write("")
- elif not os.path.exists(src):
- # Git repo is configured in a way we don't support such as having
- # packed refs. Even though in a git repo, tf.__git_version__ will not
- # be accurate.
- # TODO(mikecase): Support grabbing git info when using packed refs.
- open(os.path.join(gen_path, target), "w").write("")
- spec["git"] = False
else:
try:
# In python 3.5, symlink function exists even on Windows. But requires