simplify tool version echoes;
Project: http://git-wip-us.apache.org/repos/asf/storm/repo Commit: http://git-wip-us.apache.org/repos/asf/storm/commit/9e490da7 Tree: http://git-wip-us.apache.org/repos/asf/storm/tree/9e490da7 Diff: http://git-wip-us.apache.org/repos/asf/storm/diff/9e490da7 Branch: refs/heads/master Commit: 9e490da70b3f1bd76c02718b6cc1bad45d33244d Parents: 49d46be Author: Chuck Burgess <[email protected]> Authored: Thu Dec 3 11:22:59 2015 -0600 Committer: Chuck Burgess <[email protected]> Committed: Fri Dec 4 08:14:15 2015 -0600 ---------------------------------------------------------------------- dev-tools/travis/travis-script.sh | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/storm/blob/9e490da7/dev-tools/travis/travis-script.sh ---------------------------------------------------------------------- diff --git a/dev-tools/travis/travis-script.sh b/dev-tools/travis/travis-script.sh index a302e23..503ba74 100755 --- a/dev-tools/travis/travis-script.sh +++ b/dev-tools/travis/travis-script.sh @@ -11,16 +11,10 @@ # 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 "Ruby version : " `ruby -v` +echo "NodeJs version : " `node -v` +echo "Maven version : " `mvn -v` STORM_SRC_ROOT_DIR=$1
