YETUS-353. runtime wrapper for build driver Signed-off-by: Allen Wittenauer <[email protected]>
Project: http://git-wip-us.apache.org/repos/asf/yetus/repo Commit: http://git-wip-us.apache.org/repos/asf/yetus/commit/2ec723ce Tree: http://git-wip-us.apache.org/repos/asf/yetus/tree/2ec723ce Diff: http://git-wip-us.apache.org/repos/asf/yetus/diff/2ec723ce Branch: refs/heads/YETUS-156 Commit: 2ec723ce1e4741201809b606dc1e8da4264d0b7d Parents: 7bdac41 Author: Allen Wittenauer <[email protected]> Authored: Tue Mar 29 17:12:43 2016 -0700 Committer: Allen Wittenauer <[email protected]> Committed: Tue Mar 29 17:22:49 2016 -0700 ---------------------------------------------------------------------- build.sh | 4 +++- precommit/test-patch.sh | 8 +++++++- 2 files changed, 10 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/yetus/blob/2ec723ce/build.sh ---------------------------------------------------------------------- diff --git a/build.sh b/build.sh index 6b23683..54b628f 100755 --- a/build.sh +++ b/build.sh @@ -155,11 +155,13 @@ cp -r shelldocs "${bin_tarball}/lib/" cp -r release-doc-maker "${bin_tarball}/lib/" cp -r precommit "${bin_tarball}/lib/" +ln -s test-patch.sh "${bin_tarball}/lib/precommit/qbt.sh" mkdir -p "${bin_tarball}/bin" for utility in shelldocs/shelldocs.py release-doc-maker/releasedocmaker.py \ - precommit/smart-apply-patch.sh precommit/test-patch.sh + precommit/smart-apply-patch.sh precommit/test-patch.sh \ + precommit/qbt.sh do wrapper=${utility##*/} wrapper=${wrapper%.*} http://git-wip-us.apache.org/repos/asf/yetus/blob/2ec723ce/precommit/test-patch.sh ---------------------------------------------------------------------- diff --git a/precommit/test-patch.sh b/precommit/test-patch.sh index 185559b..53515a3 100755 --- a/precommit/test-patch.sh +++ b/precommit/test-patch.sh @@ -25,6 +25,8 @@ fi this="${BASH_SOURCE-$0}" BINDIR=$(cd -P -- "$(dirname -- "${this}")" >/dev/null && pwd -P) +BINNAME=${this##*/} +BINNAME=${BINNAME%.sh} STARTINGDIR=$(pwd) USER_PARAMS=("$@") GLOBALTIMER=$(date +"%s") @@ -2995,7 +2997,11 @@ function import_core import_core -initialize "$@" +if [[ "${BINNAME}" =~ qbt ]]; then + initialize --empty-patch "$@" +else + initialize "$@" +fi prechecks
