1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00

0023739: Execution of Draw Harness command "test" failed

This commit is contained in:
kgv 2013-02-02 10:32:07 +04:00 committed by kgv
parent cf5195b88c
commit 723754e2a3

View File

@ -1912,7 +1912,7 @@ proc load_data_file {file format shape} {
# procedure to get name of temporary directory,
# ensuring it is existing and writeable
proc _get_temp_dir {} {
global env
global env tcl_platform
# check typical environment variables
foreach var {TempDir Temp Tmp} {
@ -1939,7 +1939,7 @@ proc _get_temp_dir {} {
}
}
foreach dir $paths {
if { [file isdirectory $dir] && [file iswritable $dir] } {
if { [file isdirectory $dir] && [file writable $dir] } {
return $dir
}
}