From 24cfa76e6bffbf984773625e78d986a544365be0 Mon Sep 17 00:00:00 2001 From: kervala Date: Sat, 27 Feb 2016 18:34:50 +0100 Subject: [PATCH] Fixed: Use / instead of \ under UNIX --- code/ryzom/client/src/login_patch.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/code/ryzom/client/src/login_patch.cpp b/code/ryzom/client/src/login_patch.cpp index 70f45aeff..70bb3d73c 100644 --- a/code/ryzom/client/src/login_patch.cpp +++ b/code/ryzom/client/src/login_patch.cpp @@ -826,8 +826,8 @@ void CPatchManager::createBatchFile(CProductDescriptionForClient &descFile, bool content += toString("move %s %s\n", realSrcPath.c_str(), realDstPath.c_str()); #else // use DSTPATH and SRCPATH variables and append filenames - string realDstPath = toString("\"$ROOTPATH\\%s\"", batchRelativeDstPath.c_str()); - string realSrcPath = toString("\"$UNPACKPATH\\%s\"", FileName.c_str()); + string realDstPath = toString("\"$ROOTPATH/%s\"", batchRelativeDstPath.c_str()); + string realSrcPath = toString("\"$UNPACKPATH/%s\"", FileName.c_str()); content += toString("rm -rf %s\n", realDstPath.c_str()); content += toString("mv %s %s\n", realSrcPath.c_str(), realDstPath.c_str()); @@ -929,7 +929,6 @@ void CPatchManager::createBatchFile(CProductDescriptionForClient &descFile, bool contentPrefix += "LOGIN=$4\n"; contentPrefix += "PASSWORD=$5\n"; contentPrefix += "SHARDID=$6\n"; - contentPrefix += toString("UPGRADE_FILE=\"$ROOTPATH\\%s\"\n", UpgradeBatchFilename.c_str()); #endif contentPrefix += "\n";