Repository: parquet-cpp Updated Branches: refs/heads/master b259188dc -> fbdcb21d4
PARQUET-541: Portable build scripts Some systems doesn't have `/bin/bash` absolute path (i.e. NixOS) Author: Dmitry Bushev <[email protected]> Closes #61 from 4e6/portable-build-scripts and squashes the following commits: 6b4eb89 [Dmitry Bushev] portable build scripts Project: http://git-wip-us.apache.org/repos/asf/parquet-cpp/repo Commit: http://git-wip-us.apache.org/repos/asf/parquet-cpp/commit/fbdcb21d Tree: http://git-wip-us.apache.org/repos/asf/parquet-cpp/tree/fbdcb21d Diff: http://git-wip-us.apache.org/repos/asf/parquet-cpp/diff/fbdcb21d Branch: refs/heads/master Commit: fbdcb21d4fd84dd8f7371064efed9a40e6e7646f Parents: b259188 Author: Dmitry Bushev <[email protected]> Authored: Sat Feb 20 19:29:00 2016 -0800 Committer: Julien Le Dem <[email protected]> Committed: Sat Feb 20 19:29:00 2016 -0800 ---------------------------------------------------------------------- setup_build_env.sh | 2 +- thirdparty/build_thirdparty.sh | 2 +- thirdparty/download_thirdparty.sh | 2 +- thirdparty/set_thirdparty_env.sh | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/parquet-cpp/blob/fbdcb21d/setup_build_env.sh ---------------------------------------------------------------------- diff --git a/setup_build_env.sh b/setup_build_env.sh index 60ce7cf..e6f0c59 100755 --- a/setup_build_env.sh +++ b/setup_build_env.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash SOURCE_DIR=$(cd "$(dirname "$BASH_SOURCE")"; pwd) : ${BUILD_DIR:=$SOURCE_DIR/build} http://git-wip-us.apache.org/repos/asf/parquet-cpp/blob/fbdcb21d/thirdparty/build_thirdparty.sh ---------------------------------------------------------------------- diff --git a/thirdparty/build_thirdparty.sh b/thirdparty/build_thirdparty.sh index 2a4a2dc..32149ce 100755 --- a/thirdparty/build_thirdparty.sh +++ b/thirdparty/build_thirdparty.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash set -x set -e http://git-wip-us.apache.org/repos/asf/parquet-cpp/blob/fbdcb21d/thirdparty/download_thirdparty.sh ---------------------------------------------------------------------- diff --git a/thirdparty/download_thirdparty.sh b/thirdparty/download_thirdparty.sh index e0dd7fd..c01c9b2 100755 --- a/thirdparty/download_thirdparty.sh +++ b/thirdparty/download_thirdparty.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash set -x set -e http://git-wip-us.apache.org/repos/asf/parquet-cpp/blob/fbdcb21d/thirdparty/set_thirdparty_env.sh ---------------------------------------------------------------------- diff --git a/thirdparty/set_thirdparty_env.sh b/thirdparty/set_thirdparty_env.sh index 50c5731..6f283e3 100644 --- a/thirdparty/set_thirdparty_env.sh +++ b/thirdparty/set_thirdparty_env.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash SOURCE_DIR=$(cd "$(dirname "$BASH_SOURCE")"; pwd) source $SOURCE_DIR/versions.sh
