aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/tools/ci_build
diff options
context:
space:
mode:
authorGravatar Amit Patankar <amitpatankar@google.com>2018-08-20 17:18:38 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-08-20 17:26:25 -0700
commit59819f56a1fa21e0481b0d827116d24aeaffa5ea (patch)
tree896af510b18eecb140379e7278959abdf2353641 /tensorflow/tools/ci_build
parentf1ed43263ff034b029e1e197e1c83178646bde7a (diff)
Fix the update_version call to use python rather than ./ as the python path is
different. PiperOrigin-RevId: 209513754
Diffstat (limited to 'tensorflow/tools/ci_build')
-rw-r--r--tensorflow/tools/ci_build/windows/cpu/pip/build_tf_windows.sh2
-rw-r--r--tensorflow/tools/ci_build/windows/gpu/pip/build_tf_windows.sh2
2 files changed, 2 insertions, 2 deletions
diff --git a/tensorflow/tools/ci_build/windows/cpu/pip/build_tf_windows.sh b/tensorflow/tools/ci_build/windows/cpu/pip/build_tf_windows.sh
index 2baab50f40..5d0a8efc69 100644
--- a/tensorflow/tools/ci_build/windows/cpu/pip/build_tf_windows.sh
+++ b/tensorflow/tools/ci_build/windows/cpu/pip/build_tf_windows.sh
@@ -88,7 +88,7 @@ else
fi
if [[ "$TF_NIGHTLY" == 1 ]]; then
- ./tensorflow/tools/ci_build/update_version.py --nightly
+ python tensorflow/tools/ci_build/update_version.py --nightly
EXTRA_PIP_FLAG="--nightly_flag"
fi
diff --git a/tensorflow/tools/ci_build/windows/gpu/pip/build_tf_windows.sh b/tensorflow/tools/ci_build/windows/gpu/pip/build_tf_windows.sh
index 42792ac710..7ac07872e9 100644
--- a/tensorflow/tools/ci_build/windows/gpu/pip/build_tf_windows.sh
+++ b/tensorflow/tools/ci_build/windows/gpu/pip/build_tf_windows.sh
@@ -88,7 +88,7 @@ else
fi
if [[ "$TF_NIGHTLY" == 1 ]]; then
- ./tensorflow/tools/ci_build/update_version.py --nightly
+ python tensorflow/tools/ci_build/update_version.py --nightly
EXTRA_PIP_FLAG="--nightly_flag"
fi