Landing pull request 560. Further reduce minimal header. Fixes #10553.

More Details:
 - https://github.com/jquery/jquery/pull/560
 - http://bugs.jquery.com/ticket/10553
This commit is contained in:
Rick Waldron 2011-10-22 16:06:57 -04:00 committed by timmywil
parent c51b29477e
commit e1a5d3ebfb

View File

@ -5,7 +5,7 @@ var print = require( "sys" ).print,
src = fs.readFileSync( process.argv[2], "utf8" ),
version = fs.readFileSync( "version.txt", "utf8" ),
// License Template
license = "/*! jQuery v@VERSION http://jquery.com/ | http://jquery.org/license */";
license = "/*! jQuery v@VERSION jquery.com | jquery.org/license */";
// Previously done in sed but reimplemented here due to portability issues