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/c64cd296 Tree: http://git-wip-us.apache.org/repos/asf/yetus/tree/c64cd296 Diff: http://git-wip-us.apache.org/repos/asf/yetus/diff/c64cd296 Branch: refs/heads/YETUS-156 Commit: c64cd296b8e504fc449147fa31bc1853bb8403fc Parents: 51974b0 Author: Allen Wittenauer <[email protected]> Authored: Tue Mar 29 17:12:43 2016 -0700 Committer: Allen Wittenauer <[email protected]> Committed: Sun Apr 17 14:07:17 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/c64cd296/build.sh ---------------------------------------------------------------------- diff --git a/build.sh b/build.sh index 8be3911..0eee9a3 100755 --- a/build.sh +++ b/build.sh @@ -167,11 +167,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/c64cd296/precommit/test-patch.sh ---------------------------------------------------------------------- diff --git a/precommit/test-patch.sh b/precommit/test-patch.sh index 23e7c3a..f3dbc92 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") @@ -3031,7 +3033,11 @@ function import_core import_core -initialize "$@" +if [[ "${BINNAME}" =~ qbt ]]; then + initialize --empty-patch "$@" +else + initialize "$@" +fi prechecks
