Changeset 36315
- Timestamp:
- 01/15/2016 11:53:29 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Gruntfile.js
r35720 r36315 109 109 version = version.replace( /-src$/, '' ); 110 110 111 // If the version includes an SVN commit (-12345), it's not a released alpha/beta. Append a date.112 version = version.replace( /-[\d]{5}$/, '-' + grunt.template.today( 'yyyymmdd') );111 // If the version includes an SVN commit (-12345), it's not a released alpha/beta. Append a timestamp. 112 version = version.replace( /-[\d]{5}$/, '-' + new Date().getTime() ); 113 113 114 114 /* jshint quotmark: true */
Note: See TracChangeset
for help on using the changeset viewer.