unicorn commit: fixed temporary_repo path

changeset:   1276:bf2b09a47566
user:        Thomas Gambet <tgambet@w3.org>
date:        Fri Jun 18 16:51:10 2010 -0400
files:       src/org/w3c/unicorn/Framework.java
description:
fixed temporary_repo path


diff -r ac55724157c7 -r bf2b09a47566 src/org/w3c/unicorn/Framework.java
--- a/src/org/w3c/unicorn/Framework.java	Fri Jun 18 16:21:25 2010 -0400
+++ b/src/org/w3c/unicorn/Framework.java	Fri Jun 18 16:51:10 2010 -0400
@@ -169,7 +169,7 @@
 		
 		// creating uploaded and temporary files directories
 		File upload_repo = new File(Property.get("UPLOADED_FILES_REPOSITORY"));
-		File temporary_repo = new File(Property.get("UPLOADED_FILES_REPOSITORY"));
+		File temporary_repo = new File(Property.get("PATH_TO_TEMPORARY_FILES"));
 		if (upload_repo.mkdir() || upload_repo.exists())
 			logger.debug("> Created uploaded files directory: \n\t" 
 				+ Property.get("UPLOADED_FILES_REPOSITORY"));

Received on Friday, 18 June 2010 21:16:19 UTC