From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bruce Richardson Subject: [PATCH] usertools/dpdk-telemetry-client: make script executable Date: Tue, 22 Jan 2019 16:27:32 +0000 Message-ID: <20190122162732.58892-1-bruce.richardson@intel.com> Mime-Version: 1.0 Content-Transfer-Encoding: 8bit Cc: Bruce Richardson To: dev@dpdk.org Return-path: Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by dpdk.org (Postfix) with ESMTP id B06492C36 for ; Tue, 22 Jan 2019 17:27:39 +0100 (CET) List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Add #! line to the top of the script and mark it as executable so it can be run directly rather than having to pass it to python interpreter. Signed-off-by: Bruce Richardson --- usertools/dpdk-telemetry-client.py | 1 + 1 file changed, 1 insertion(+) mode change 100644 => 100755 usertools/dpdk-telemetry-client.py diff --git a/usertools/dpdk-telemetry-client.py b/usertools/dpdk-telemetry-client.py old mode 100644 new mode 100755 index 6dcf62bac..ce0c7a905 --- a/usertools/dpdk-telemetry-client.py +++ b/usertools/dpdk-telemetry-client.py @@ -1,3 +1,4 @@ +#! /usr/bin/env python # SPDK-License-Identifier: BSD-3-Clause # Copyright(c) 2018 Intel Corporation -- 2.20.1