From dab95c1465adb68ad645642bb3633142eb07f9e4 Mon Sep 17 00:00:00 2001 From: Suryaprakash Shanmugam Date: Mon, 25 Oct 2021 22:50:30 +0530 Subject: [PATCH] Revert change in build script that was causing OV build to fail --- build_ovtf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build_ovtf.py b/build_ovtf.py index f88534520..f3d598b3a 100644 --- a/build_ovtf.py +++ b/build_ovtf.py @@ -385,6 +385,7 @@ def main(): tf_src_dir = os.path.join(artifacts_location, "tensorflow") print("TF_SRC_DIR: ", tf_src_dir) # Download TF source for enabling TF python tests + pwd_now = os.getcwd() if not os.path.exists(artifacts_location): raise AssertionError( "Path doesn't exist {0}".format(artifacts_location)) @@ -394,7 +395,6 @@ def main(): "https://github.com/tensorflow/tensorflow.git", tf_version) print("Using TensorFlow version", tf_version) - pwd_now = os.getcwd() if not os.path.exists(pwd_now): raise AssertionError("Path doesn't exist {0}".format(pwd_now)) os.chdir(pwd_now)