You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@depot.apache.org by ni...@apache.org on 2004/05/03 05:59:25 UTC

svn commit: rev 10506 - incubator/depot/trunk/update/src/test/org/apache/depot/update/ant

Author: nickchalko
Date: Sun May  2 22:59:24 2004
New Revision: 10506

Modified:
   incubator/depot/trunk/update/src/test/org/apache/depot/update/ant/build.xml
Log:
Fixed typo.

Modified: incubator/depot/trunk/update/src/test/org/apache/depot/update/ant/build.xml
==============================================================================
--- incubator/depot/trunk/update/src/test/org/apache/depot/update/ant/build.xml	(original)
+++ incubator/depot/trunk/update/src/test/org/apache/depot/update/ant/build.xml	Sun May  2 22:59:24 2004
@@ -36,7 +36,7 @@
 		<cachedset id="test1">
 			<resource name="helloworld" ext="jar" version="1.1" repository="localtest" />
 		</cachedset>
-		<copy toDir="${sandgox.dir}">
+		<copy toDir="${sandbox.dir}">
 			<fileset refid="test1.fileset" />
 		</copy>
 	</target>
@@ -45,7 +45,7 @@
 		<cachedset id="test2">
 			<resource name="helloworld" ext="jar" version="1.2" repository="localtest" />
 		</cachedset>
-		<copy toDir="${sandgox.dir}">
+		<copy toDir="${sandbox.dir}">
 			<fileset refid="test2.fileset" />
 		</copy>
 	</target>
@@ -55,7 +55,7 @@
 		<cachedset id="test3">
 			<resource name="helloworld" ext="jar" version="1.3" repository="localtest" />
 		</cachedset>
-		<copy toDir="${sandgox.dir}">
+		<copy toDir="${sandbox.dir}">
 			<fileset refid="test3.fileset" />
 		</copy>
 	</target>
@@ -70,7 +70,7 @@
 		<cachedset id="test4">
 			<resource name="helloworld" ext="jar" version="1.2" repository="localtest" />
 		</cachedset>
-		<copy toDir="${sandgox.dir}">
+		<copy toDir="${sandbox.dir}">
 			<fileset refid="test4.fileset" />
 		</copy>
 	</target>
@@ -86,7 +86,7 @@
 			<resource name="notfound" ext="jar" version="1.2" repository="localtest" />
 		</cachedset>
 		<!-- have to use the chaced set before it is used. -->
-		<copy toDir="${sandgox.dir}">
+		<copy toDir="${sandbox.dir}">
 			<fileset refid="testNotFound.fileset" />
 		</copy>
 	</target>
@@ -98,6 +98,6 @@
 
 	<target name="clean-jars">
 		<delete dir="${local.repository}" />
-		<delete dir="${sandgox.dir}" />
+		<delete dir="${sandbox.dir}" />
 	</target>
 </project>