This is an automated email from the ASF dual-hosted git repository.
nkollar pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/parquet-mr.git
The following commit(s) were added to refs/heads/master by this push:
new 54d3703 PARQUET-1600: Fix shebang in parquet-benchmarks/run.sh (#651)
54d3703 is described below
commit 54d3703b0a460499d24f52b06dbc3ec8269c094a
Author: Kengo Seki <sekikn@apache.org>
AuthorDate: Tue Jul 23 18:26:54 2019 +0900
PARQUET-1600: Fix shebang in parquet-benchmarks/run.sh (#651)
---
parquet-benchmarks/run.sh | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/parquet-benchmarks/run.sh b/parquet-benchmarks/run.sh
index cfaddae..8aa1e69 100755
--- a/parquet-benchmarks/run.sh
+++ b/parquet-benchmarks/run.sh
@@ -1,3 +1,4 @@
+#!/usr/bin/env bash
#
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
@@ -17,8 +18,6 @@
# under the License.
#
-# !/usr/bin/env bash
-
SCRIPT_PATH=$( cd "$(dirname "$0")" ; pwd -P )
echo "Starting WRITE benchmarks"
|