Changed: Add a 7 seconds pause under UNIX
This commit is contained in:
parent
045d255a09
commit
3c948ef625
1 changed files with 2 additions and 1 deletions
|
@ -3157,7 +3157,8 @@ bool CPatchManager::extract(const std::string& patchPath,
|
|||
fprintf(fp, "@echo off\n");
|
||||
fprintf(fp, "ping 127.0.0.1 -n 7 -w 1000 > nul\n"); // wait
|
||||
#else
|
||||
// TODO: for Linux and OS X
|
||||
fprintf(fp, "#!/bin/sh\n");
|
||||
fprintf(fp, "sleep 7\n"); // wait
|
||||
#endif
|
||||
|
||||
// Unpack files with category ExtractPath non empty
|
||||
|
|
Loading…
Reference in a new issue