From 8f307233248edcd8d191f7bbb113330170638a72 Mon Sep 17 00:00:00 2001 From: Harry Huang Date: Wed, 29 Mar 2017 17:30:15 +0800 Subject: Fix some opera related error 1. echo a string to compass log to avoid deploy error bing concealed 2. judge return code of ./opera_launch.sh Change-Id: I7ac2bac9b600f289c01116e7f7777d1219a58eb2 Signed-off-by: Harry Huang --- deploy/opera_adapter.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'deploy/opera_adapter.py') diff --git a/deploy/opera_adapter.py b/deploy/opera_adapter.py index 71f19951..137aba54 100644 --- a/deploy/opera_adapter.py +++ b/deploy/opera_adapter.py @@ -76,14 +76,14 @@ if __name__ == "__main__": compass_dir = os.getenv('COMPASS_DIR') if not compass_dir: - print("env var COMPASS_DIR doesn't exit") + print("env var COMPASS_DIR doesn't exist") sys.exit(1) if not os.path.exists(dha_file): - print("DHA file doesn't exit") + print("DHA file doesn't exist") sys.exit(1) if not os.path.exists(network_file): - print("NETWORK file doesn't exit") + print("NETWORK file doesn't exist") sys.exit(1) dha = load_file(dha_file) @@ -121,3 +121,6 @@ if __name__ == "__main__": p2 = subprocess.Popen("./opera_launch.sh", cwd=opera_dir, shell=True) p2.communicate() + if p2.returncode != 0: + print('./opera_launch.sh fail') + sys.exit(1) -- cgit 1.2.3-korg