git.asbjorn.biz
/
jquery.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c7006d2
)
Removed the revision info and fixed the date pull to work against git log instead...
author
John Resig
<jeresig@gmail.com>
Fri, 23 Oct 2009 07:25:40 +0000
(
03:25
-0400)
committer
John Resig
<jeresig@gmail.com>
Fri, 23 Oct 2009 07:25:40 +0000
(
03:25
-0400)
Makefile
patch
|
blob
|
history
src/intro.js
patch
|
blob
|
history
diff --git
a/Makefile
b/Makefile
index
41bb827
..
bf0bfd0
100644
(file)
--- a/
Makefile
+++ b/
Makefile
@@
-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"
diff --git
a/src/intro.js
b/src/intro.js
index
3b9dd8e
..
a3a42bb
100644
(file)
--- a/
src/intro.js
+++ b/
src/intro.js
@@
-7,7
+7,6
@@
* http://docs.jquery.com/License
*
* Date:
- * Revision:
*/
(function(window, undefined){