zengqb 5 years ago
parent
commit
1e87506b03
2 changed files with 1 additions and 3 deletions
  1. 0 1
      package_utils.py
  2. 1 2
      sdk/jm_erjiuyouaz/script/sdk_script.py

+ 0 - 1
package_utils.py

@@ -287,7 +287,6 @@ def removeSameRes(game, sdk, subChannel, config):
         for resFile in os.listdir(absPath):
             '''if not resFile.startswith('jm_'):
                 continue'''
-            print(resFile)
 
             resList = xml_utils.readAllRes(os.path.join(absPath, resFile), resList)
 

+ 1 - 2
sdk/jm_erjiuyouaz/script/sdk_script.py

@@ -51,8 +51,7 @@ def createJmhyProperties(game, sdk, subChannel, config):
     decompliePath = file_utils.getDecompliePath(game, sdk, subChannel, config['cache'])
     properties = os.path.join(decompliePath, 'assets', 'ejyx.properties')
     content = 'version=1.1\n'
-    content = 'agent=csaz'
-    #content = '%s%s=%s\n' % (content, 'agent', config['channel_id'])
+    content = '%s%s=%s\n' % (content, 'agent', config['channel_id'])
 
     file_utils.createFile(properties, content)
     return 0