mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 09:19:01 +00:00
Add --admininstall parameter to c1_shard_patch
This commit is contained in:
parent
0a41e6b3c4
commit
4311da091f
1 changed files with 21 additions and 16 deletions
|
@ -24,9 +24,13 @@
|
|||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
#
|
||||
|
||||
import time, sys, os, shutil, subprocess, distutils.dir_util, tarfile
|
||||
import time, sys, os, shutil, subprocess, distutils.dir_util, tarfile, argparse
|
||||
sys.path.append("configuration")
|
||||
|
||||
parser = argparse.ArgumentParser(description='Ryzom Core - Build Gamedata - Shard Patch')
|
||||
parser.add_argument('--admininstall', '-ai', action='store_true')
|
||||
args = parser.parse_args()
|
||||
|
||||
if os.path.isfile("log.log"):
|
||||
os.remove("log.log")
|
||||
log = open("log.log", "w")
|
||||
|
@ -84,23 +88,24 @@ else:
|
|||
printLog(log, "SKIP " + adminInstallTgz)
|
||||
printLog(log, "")
|
||||
|
||||
printLog(log, ">>> Create new version <<<")
|
||||
newVersion = 1
|
||||
vstr = str(newVersion).zfill(6)
|
||||
vpath = PatchmanBridgeServerDirectory + "/" + vstr
|
||||
while os.path.exists(vpath):
|
||||
newVersion = newVersion + 1
|
||||
if not args.admininstall:
|
||||
printLog(log, ">>> Create new version <<<")
|
||||
newVersion = 1
|
||||
vstr = str(newVersion).zfill(6)
|
||||
vpath = PatchmanBridgeServerDirectory + "/" + vstr
|
||||
mkPath(log, vpath)
|
||||
for dir in archiveDirectories:
|
||||
mkPath(log, ShardInstallDirectory + "/" + dir)
|
||||
tgzPath = vpath + "/" + dir + ".tgz"
|
||||
printLog(log, "WRITE " + tgzPath)
|
||||
tar = tarfile.open(tgzPath, "w:gz")
|
||||
tar.add(ShardInstallDirectory + "/" + dir, arcname = dir)
|
||||
tar.close()
|
||||
printLog(log, "")
|
||||
while os.path.exists(vpath):
|
||||
newVersion = newVersion + 1
|
||||
vstr = str(newVersion).zfill(6)
|
||||
vpath = PatchmanBridgeServerDirectory + "/" + vstr
|
||||
mkPath(log, vpath)
|
||||
for dir in archiveDirectories:
|
||||
mkPath(log, ShardInstallDirectory + "/" + dir)
|
||||
tgzPath = vpath + "/" + dir + ".tgz"
|
||||
printLog(log, "WRITE " + tgzPath)
|
||||
tar = tarfile.open(tgzPath, "w:gz")
|
||||
tar.add(ShardInstallDirectory + "/" + dir, arcname = dir)
|
||||
tar.close()
|
||||
printLog(log, "")
|
||||
|
||||
log.close()
|
||||
if os.path.isfile("c1_shard_patch.log"):
|
||||
|
|
Loading…
Reference in a new issue