This %TEMP% is a mere cause of problems (e.g. --os-cmd in MSSQL the BULK INSERT with '%TEMP%\foo' does not work), stick with C:/WINDOWS/Temp

This commit is contained in:
Bernardo Damele 2010-05-29 15:27:49 +00:00
parent 4ba22b5098
commit 1387ed0c25

View File

@ -51,9 +51,6 @@ class Miscellaneous:
def getRemoteTempPath(self):
if not conf.tmpPath:
if kb.os == "Windows":
if kb.dbms == "Microsoft SQL Server":
conf.tmpPath = "%TEMP%"
else:
conf.tmpPath = "C:/WINDOWS/Temp"
else:
conf.tmpPath = "/tmp"