Skip to content
Permalink
Browse files
Removed the revision info and fixed the date pull to work against git…
… log instead of SVN.
  • Loading branch information
jeresig committed Oct 23, 2009
1 parent c7006d2 commit bcbd06b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
@@ -31,8 +31,7 @@ VER = sed s/@VERSION/${JQ_VER}/

MINJAR = java -jar ${BUILD_DIR}/yuicompressor-2.4.2.jar

DATE=`svn info . | grep Date: | sed 's/.*: //g'`
REV=`svn info . | grep Rev: | sed 's/.*: //g'`
DATE=`git log -1 | grep Date: | sed 's/.*: *//g'`

all: jquery test min
@@echo "jQuery build complete."
@@ -48,7 +47,6 @@ ${JQ}: ${MODULES}
@@mkdir -p ${DIST_DIR}
@@cat ${MODULES} | \
sed 's/Date:./&'"${DATE}"'/' | \
sed 's/Revision:./&'"${REV}"'/' | \
${VER} > ${JQ};

@@echo ${JQ} "Built"
@@ -7,7 +7,6 @@
* http://docs.jquery.com/License
*
* Date:
* Revision:
*/
(function(window, undefined){

0 comments on commit bcbd06b

Please sign in to comment.