[sfraser@netscape.com] Try to fix clobber tinderbox problems by putting a timeout on the Import project XML AppleScript. r=jj

This commit is contained in:
cltbld%netscape.com 2000-11-29 04:18:30 +00:00
Родитель 7a8ffc2338
Коммит 4fae278554
1 изменённых файлов: 4 добавлений и 2 удалений

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

@ -285,11 +285,13 @@ sub ImportXMLProject($$)
my ($codewarrior_ide_name) = Moz::CodeWarriorLib::getCodeWarriorIDEName();
my $ascript = <<EOS;
tell application "$codewarrior_ide_name"
with timeout of 30 seconds
make new (project document) as ("$project_path") with data ("$xml_path")
end timeout
end tell
EOS
print $ascript."\n";
MacPerl::DoAppleScript($ascript) or die($^E);
print $ascript."\n";
MacPerl::DoAppleScript($ascript) or die "Error: ImportXMLProject AppleScript failed $^E\n";
}