You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafodion.apache.org by ar...@apache.org on 2016/01/06 22:49:12 UTC

[1/2] incubator-trafodion git commit: Using git command instead of shell

Repository: incubator-trafodion
Updated Branches:
  refs/heads/master 37849041f -> 7e1dfcabf


Using git command instead of shell


Project: http://git-wip-us.apache.org/repos/asf/incubator-trafodion/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-trafodion/commit/3023566e
Tree: http://git-wip-us.apache.org/repos/asf/incubator-trafodion/tree/3023566e
Diff: http://git-wip-us.apache.org/repos/asf/incubator-trafodion/diff/3023566e

Branch: refs/heads/master
Commit: 3023566e4b250b29fcdd82eb683aa1cf179ddde1
Parents: fc9651f
Author: Kevin Xu <ka...@esgyn.cn>
Authored: Wed Jan 6 18:14:59 2016 +0800
Committer: Kevin Xu <ka...@esgyn.cn>
Committed: Wed Jan 6 18:14:59 2016 +0800

----------------------------------------------------------------------
 core/conn/jdbc_type4/build.xml | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/3023566e/core/conn/jdbc_type4/build.xml
----------------------------------------------------------------------
diff --git a/core/conn/jdbc_type4/build.xml b/core/conn/jdbc_type4/build.xml
index 7a0a570..396d55f 100755
--- a/core/conn/jdbc_type4/build.xml
+++ b/core/conn/jdbc_type4/build.xml
@@ -27,10 +27,11 @@
 	</tstamp>
 
 	<!-- input -->
-        <exec executable="/bin/sh">
-            <arg line="getBuildInfo"/>
-        </exec>
-        <property file="buildId"/>
+	<exec executable="git" outputproperty="bldId">
+	        <arg value="rev-parse" />
+	        <arg value="--short" />
+	        <arg value="HEAD" />
+	</exec>
 	<property name="vproc.str" value="Traf_JDBC_Type4_Build_${bldId}" />
 	<property name="my_sqroot" value="../../sqf"/>
 	<property id="basedir" name="basedir" value="."/>


[2/2] incubator-trafodion git commit: Merge [TRAFODION-1738] PR-249 Using git command instead of shell to get build ID

Posted by ar...@apache.org.
Merge [TRAFODION-1738] PR-249 Using git command instead of shell to get build ID


Project: http://git-wip-us.apache.org/repos/asf/incubator-trafodion/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-trafodion/commit/7e1dfcab
Tree: http://git-wip-us.apache.org/repos/asf/incubator-trafodion/tree/7e1dfcab
Diff: http://git-wip-us.apache.org/repos/asf/incubator-trafodion/diff/7e1dfcab

Branch: refs/heads/master
Commit: 7e1dfcabfd2a0e12a6f031e3dcae8fab06a4eeab
Parents: 3784904 3023566
Author: Arvind Narain <ar...@apache.org>
Authored: Wed Jan 6 21:46:56 2016 +0000
Committer: Arvind Narain <ar...@apache.org>
Committed: Wed Jan 6 21:46:56 2016 +0000

----------------------------------------------------------------------
 core/conn/jdbc_type4/build.xml | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)
----------------------------------------------------------------------