aboutsummarylogtreecommitdiffstats
path: root/path.patch
blob: 28a5888c0469853cba111d0454e34a274818a9fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
--- a/tools/python/info.py
+++ b/tools/python/info.py
@@ -2,6 +2,7 @@ import os, shutil,  sys
 import json, pickle
 import argparse
 import ConfigParser
+import tempfile
 from advprint import AdvPrint
 
 class Info(dict):
@@ -671,7 +672,7 @@ class Info(dict):
 
         cls.paths['checkmate'] = os.path.split(os.path.split(os.path.split(os.path.realpath(__file__))[0])[0])[0]
         
-        cls.paths['results'] = os.path.join(cls.paths['checkmate'], 'results')
+        cls.paths['results'] = os.path.join(tempfile.gettempdir(), 'checkmate')
         cls.paths['tools'] = os.path.join(cls.paths['checkmate'], 'tools')
         cls.paths['data'] = os.path.join(cls.paths['checkmate'], 'data')