Repository: storm Updated Branches: refs/heads/master 79a2a2a58 -> 10b33a61b
only show relevant tool versions for install step; Project: http://git-wip-us.apache.org/repos/asf/storm/repo Commit: http://git-wip-us.apache.org/repos/asf/storm/commit/49d46be8 Tree: http://git-wip-us.apache.org/repos/asf/storm/tree/49d46be8 Diff: http://git-wip-us.apache.org/repos/asf/storm/diff/49d46be8 Branch: refs/heads/master Commit: 49d46be837a6a0d164c09313db5291fdd995c2e2 Parents: ce2d49b Author: Chuck Burgess <[email protected]> Authored: Thu Dec 3 11:22:33 2015 -0600 Committer: Chuck Burgess <[email protected]> Committed: Fri Dec 4 08:14:14 2015 -0600 ---------------------------------------------------------------------- dev-tools/travis/travis-install.sh | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/storm/blob/49d46be8/dev-tools/travis/travis-install.sh ---------------------------------------------------------------------- diff --git a/dev-tools/travis/travis-install.sh b/dev-tools/travis/travis-install.sh index 4cbebb1..c85e23c 100755 --- a/dev-tools/travis/travis-install.sh +++ b/dev-tools/travis/travis-install.sh @@ -11,16 +11,8 @@ # See the License for the specific language governing permissions and # limitations under the License. -PYTHON_VERSION_TO_FILE=`python -V > /tmp/python_version 2>&1` -PYTHON_VERSION=`cat /tmp/python_version` -RUBY_VERSION=`ruby -v` -NODEJS_VERSION=`node -v` -MVN_VERSION=`mvn -v` - -echo "Python version : $PYTHON_VERSION" -echo "Ruby version : $RUBY_VERSION" -echo "NodeJs version : $NODEJS_VERSION" -echo "mvn version : $MVN_VERSION" +echo "Python version : " `python -V 2>&1` +echo "Maven version : " `mvn -v` STORM_SRC_ROOT_DIR=$1
