Fix for bug 106298: Without the CD Autorun option, creating a Windows

installer from an existing Linux configuration tarball doesn't get
removed (r=tao)


git-svn-id: svn://10.0.0.236/trunk@106122 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
shrutiv%netscape.com
2001-10-24 01:44:05 +00:00
parent 90cb92a74d
commit 4b65b3a8d1

View File

@@ -807,9 +807,7 @@ BOOL CInterpret::interpret(CString cmds, WIDGET *curWidget)
CString outputPath = rootPath + "Configs\\" + configName + "\\Output";
char deletePath[MAX_SIZE];
strcpy(deletePath, outputPath);
int direxist = GetFileAttributes(outputPath+"\\Core");
if (direxist != -1)
CallDLL("IBEngine", "EraseDirectory", deletePath, w);
CallDLL("IBEngine", "EraseDirectory", deletePath, w);
}
}
else if (strcmp(pcmd, "WriteCache") ==0)