actually, just check if it is a file (including directory or symlink)

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@211053 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Sylvestre Ledru 2014-06-16 20:51:40 +00:00
Родитель 4a2040bc0e
Коммит 0421d5e4cc
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -208,7 +208,7 @@ sub GetHTMLRunDir {
}
# Make sure that the directory does not exist in order to avoid hijack.
if (-d $NewDir) {
if (-e $NewDir) {
DieDiag("The directory '$NewDir' already exists.\n");
}