diff options
author | aclement <aclement> | 2009-09-15 16:40:45 +0000 |
---|---|---|
committer | aclement <aclement> | 2009-09-15 16:40:45 +0000 |
commit | f78041b18d297d23b5a7f1ada3d8226ad1c45fa3 (patch) | |
tree | b3405263a983448c390f3a79887fc4077fd51fd4 /org.aspectj.ajdt.core | |
parent | 83c92096aa01076f4d7ed3022e06b7f14e3b62d5 (diff) | |
download | aspectj-f78041b18d297d23b5a7f1ada3d8226ad1c45fa3.tar.gz aspectj-f78041b18d297d23b5a7f1ada3d8226ad1c45fa3.zip |
try N drive before C to keep the damn temp files orf my SSD
Diffstat (limited to 'org.aspectj.ajdt.core')
-rw-r--r-- | org.aspectj.ajdt.core/testsrc/org/aspectj/tools/ajc/Ajc.java | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/org.aspectj.ajdt.core/testsrc/org/aspectj/tools/ajc/Ajc.java b/org.aspectj.ajdt.core/testsrc/org/aspectj/tools/ajc/Ajc.java index 474e56027..c6a5dfe11 100644 --- a/org.aspectj.ajdt.core/testsrc/org/aspectj/tools/ajc/Ajc.java +++ b/org.aspectj.ajdt.core/testsrc/org/aspectj/tools/ajc/Ajc.java @@ -314,9 +314,12 @@ public class Ajc { // AMC - I did this rather than use the JDK default as I hate having to go look // in c:\documents and settings\......... for the results of a failed test. if (os.startsWith("Windows")) { - tempDir = new File("C:\\temp"); + tempDir = new File("N:\\temp"); if (!tempDir.exists()) { - tempDir.mkdir(); + tempDir = new File("C:\\temp"); + if (!tempDir.exists()) { + tempDir.mkdir(); + } } } else { tempDir = new File("/tmp"); |