From 15f44c6946753c3f11c27640cb991c8f806f726f Mon Sep 17 00:00:00 2001 From: ZhiQiang Fan Date: Tue, 20 Oct 2015 23:43:04 +0800 Subject: specify runtime environment for scripts I68200a23c87ceca5a237da13d9549c0aa82f1b8f has changed two scripts to be executable, but unfortunately, it forgets to specify runtime environment for those scripts, which will cause error when trying to run those scripts directly. This patch adds python environment specification for them. Change-Id: Ibbcefb671de76146529b9a6e2debfee154a1aaa7 --- tools/send_test_data.py | 2 ++ tools/test_hbase_table_utils.py | 2 ++ 2 files changed, 4 insertions(+) (limited to 'tools') diff --git a/tools/send_test_data.py b/tools/send_test_data.py index fb7dc0fb..d401f80c 100755 --- a/tools/send_test_data.py +++ b/tools/send_test_data.py @@ -1,3 +1,5 @@ +#!/usr/bin/env python +# # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain # a copy of the License at diff --git a/tools/test_hbase_table_utils.py b/tools/test_hbase_table_utils.py index 1c5444b9..d6dbcbb0 100755 --- a/tools/test_hbase_table_utils.py +++ b/tools/test_hbase_table_utils.py @@ -1,3 +1,5 @@ +#!/usr/bin/env python +# # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain # a copy of the License at -- cgit v1.2.1