Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Update the publish.sh script so that it grabs the correct source tree. (CVS 2339) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | version_2 |
Files: | files | file ages | folders |
SHA1: |
74684507a0a2bda67b6cfa899ccabf99 |
User & Date: | drh 2005-02-15 16:04:47.000 |
Context
2005-02-16
| ||
03:53 | The ".dump" method in the shell for version 2 should not sort tables by name because this can put views out of dependency order. Ticket #1124. (CVS 2347) (check-in: b82c06fdd1 user: drh tags: version_2) | |
2005-02-15
| ||
16:04 | Update the publish.sh script so that it grabs the correct source tree. (CVS 2339) (check-in: 74684507a0 user: drh tags: version_2) | |
13:07 | Version 2.8.16 (CVS 2336) (check-in: 2efbbba55a user: drh tags: version_2) | |
Changes
Changes to publish.sh.
︙ | ︙ | |||
155 156 157 158 159 160 161 | cd .. # Construct a tarball of the source tree # ORIGIN=`pwd` cd $srcdir cd .. | > | | > | 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 | cd .. # Construct a tarball of the source tree # ORIGIN=`pwd` cd $srcdir cd .. mv sqlite_v2 sqlite-$VERS EXCLUDE=`find sqlite-$VERS -print | grep CVS | sed 's,^, --exclude ,'` tar czf $ORIGIN/doc/sqlite-$VERS.tar.gz $EXCLUDE sqlite-$VERS mv sqlite-$VERS sqlite_v2 cd $ORIGIN # # Build RPMS (binary) and Source RPM # # Make sure we are properly setup to build RPMs |
︙ | ︙ |