Commit ca772bf1 by sikang

bug fix

parent 09c85894
...@@ -70,6 +70,8 @@ def process_file_content(path, file_name): ...@@ -70,6 +70,8 @@ def process_file_content(path, file_name):
with open(path, "r", encoding="utf-8") as f: with open(path, "r", encoding="utf-8") as f:
# readlines以列表的形式将文件读出 # readlines以列表的形式将文件读出
lines = f.readlines() lines = f.readlines()
if "***Keep***" in lines:
return
with open(path, "w", encoding="utf-8") as f_w: with open(path, "w", encoding="utf-8") as f_w:
isReturn = False isReturn = False
......
...@@ -26,7 +26,7 @@ init(){ ...@@ -26,7 +26,7 @@ init(){
#四大组件混淆 #四大组件混淆
./rename_project.sh || { echo "rename_project error!"; exit 1; } ./rename_project.sh || { echo "rename_project error!"; exit 1; }
#代码结构混淆 #代码结构混淆
# ./insert.py || { echo "insert_code error!"; exit 1; } ./insert.py || { echo "insert_code error!"; exit 1; }
cd ../../../ cd ../../../
} }
......
...@@ -110,8 +110,8 @@ then ...@@ -110,8 +110,8 @@ then
elif (($commod == '10')) elif (($commod == '10'))
then then
cd garble cd garble
chmod a+x insert.py # chmod a+x insert.py
./insert.py # ./insert.py
elif (($commod == '11')) elif (($commod == '11'))
then then
......
//***Keep***
package com.common.bean; package com.common.bean;
import java.io.Serializable; import java.io.Serializable;
public class UploadCollectionBean implements Serializable { public class UploadCollectionBean implements Serializable {
private String imei; private String imei;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment