Get our temp directory from the repository config.
git-svn-id: https://samskivert.googlecode.com/svn/trunk@912 6335cc39-0255-0410-8fd6-9bcaacd3b74c
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
//
|
//
|
||||||
// $Id: RipPanel.java,v 1.7 2002/03/03 21:17:03 mdb Exp $
|
// $Id: RipPanel.java,v 1.8 2002/11/11 17:05:37 mdb Exp $
|
||||||
|
|
||||||
package robodj.importer;
|
package robodj.importer;
|
||||||
|
|
||||||
@@ -98,7 +98,8 @@ public class RipPanel
|
|||||||
|
|
||||||
protected static String createTempPath (int trackno, String ext)
|
protected static String createTempPath (int trackno, String ext)
|
||||||
{
|
{
|
||||||
return "/tmp/track" + trackno + "." + ext;
|
String rbase = Importer.config.getProperty("repository.tmpdir");
|
||||||
|
return rbase + "/track" + trackno + "." + ext;
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Handles the ripping and encoding of the tracks. */
|
/** Handles the ripping and encoding of the tracks. */
|
||||||
|
|||||||
Reference in New Issue
Block a user