Changed: Create .sh file under Unix
This commit is contained in:
parent
b16d1f1e03
commit
b042ec67f8
2 changed files with 7 additions and 0 deletions
|
@ -540,6 +540,9 @@ int main(int argc, char **argv)
|
|||
// ignore signal SIGPIPE generated by libwww
|
||||
signal(SIGPIPE, sigHandler);
|
||||
|
||||
// Delete the .sh file because it s not useful anymore
|
||||
if (NLMISC::CFile::fileExists("updt_nl.sh"))
|
||||
NLMISC::CFile::deleteFile("updt_nl.sh");
|
||||
#endif
|
||||
|
||||
// initialize patch manager and set the ryzom full path, before it's used
|
||||
|
|
|
@ -168,7 +168,11 @@ CPatchManager::CPatchManager() : State("t_state"), DataScanState("t_data_scan_st
|
|||
{
|
||||
DescFilename = "ryzom_xxxxx.idx";
|
||||
|
||||
#ifdef NL_OS_WINDOWS
|
||||
UpdateBatchFilename = "updt_nl.bat";
|
||||
#else
|
||||
UpdateBatchFilename = "updt_nl.sh";
|
||||
#endif
|
||||
|
||||
// use current directory by default
|
||||
setClientRootPath("./");
|
||||
|
|
Loading…
Reference in a new issue