xcopy gets all interactive when you specify a non-directory destination, and this is hanging the windows build automation. xcopy->copy takes care of this. r=tague

This commit is contained in:
leaf%mozilla.org 1999-12-06 00:13:30 +00:00
Родитель 9cbdea409e
Коммит ffd8e0ff92
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -90,7 +90,7 @@ system("xcopy /f $inDistPath\\setuprsc.dll $inDistPath\\setup");
# build the self-extracting .exe file.
print "\nbuilding self-extracting installer ($seiFileNameSpecific)...\n";
system("xcopy /F $inDistPath\\$seiFileNameGeneric $inDistPath\\$seiFileNameSpecific");
system("copy $inDistPath\\$seiFileNameGeneric $inDistPath\\$seiFileNameSpecific");
system("$inDistPath\\nszip.exe $inDistPath\\$seiFileNameSpecific $inDistPath\\setup\\*.* $inDistPath\\xpi\\*.*");
print " done!\n";