Scarab commit: svn commit: r10137 - trunk/src/conf/conf/build.xml
| Newsgroups | gmane.comp.java.scarab.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: pledbrook
Date: 2006-06-02 08:41:01-0700
New Revision: 10137
Modified:
trunk/src/conf/conf/build.xml
Log:
The "migrate-from-b20" ant target was failing because it was not copying
the new SQL migration scripts over to the target directory. This change
fixes that by making the ant target dependent on "create-db-schema",
which performs the required copy.
Modified: trunk/src/conf/conf/build.xml
Url: http://scarab.tigris.org/source/browse/scarab/trunk/src/conf/conf/build.xml?view=diff&rev=10137&p1=trunk/src/conf/conf/build.xml&p2=trunk/src/conf/conf/build.xml&r1=10136&r2=10137
==============================================================================
--- trunk/src/conf/conf/build.xml (original)
+++ trunk/src/conf/conf/build.xml 2006-06-02 08:41:01-0700
@@ -470,7 +470,7 @@
<!-- ================================================================== -->
<!-- migration targets -->
<!-- ================================================================== -->
- <target name="migrate-from-b20" depends="clean-migrate" description="Migrate a Scarab-b20 to Scarab-b21">
+ <target name="migrate-from-b20" depends="clean-migrate,create-db-schema" description="Migrate a Scarab-b20 to Scarab-b21">
<sql
driver="${scarab.database.jdbc.driver}"
url="${scarab.database.url}"